UNPKG

@kamino-finance/farms-sdk

Version:
16 lines 896 B
import { Address, IAccountMeta, IAccountSignerMeta, 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<WithdrawFromFarmVaultArgs>; export declare function withdrawFromFarmVault(args: WithdrawFromFarmVaultArgs, accounts: WithdrawFromFarmVaultAccounts, remainingAccounts?: Array<IAccountMeta | IAccountSignerMeta>, programAddress?: Address): IInstruction<string, readonly (import("@solana/kit").IAccountLookupMeta<string, string> | IAccountMeta<string>)[]>; //# sourceMappingURL=withdrawFromFarmVault.d.ts.map