UNPKG

@kamino-finance/farms-sdk

Version:
16 lines 796 B
import { Address, IAccountMeta, IInstruction, TransactionSigner } from "@solana/kit"; import BN from "bn.js"; export interface WithdrawFromFarmVaultArgs { amount: BN; } export interface WithdrawFromFarmVaultAccounts { withdrawAuthority: TransactionSigner; farmState: Address; withdrawerTokenAccount: Address; farmVault: Address; farmVaultsAuthority: Address; tokenProgram: Address; } export declare const layout: import("buffer-layout").Layout<unknown>; export declare function withdrawFromFarmVault(args: WithdrawFromFarmVaultArgs, accounts: WithdrawFromFarmVaultAccounts, programAddress?: Address): IInstruction<string, readonly (import("@solana/kit").IAccountLookupMeta<string, string> | IAccountMeta<string>)[]>; //# sourceMappingURL=withdrawFromFarmVault.d.ts.map