UNPKG

@kamino-finance/farms-sdk

Version:
13 lines 773 B
import { Address, IAccountMeta, IAccountSignerMeta, IInstruction, TransactionSigner } from "@solana/kit"; import BN from "bn.js"; export interface SetStakeDelegatedArgs { newAmount: BN; } export interface SetStakeDelegatedAccounts { delegateAuthority: TransactionSigner; userState: Address; farmState: Address; } export declare const layout: import("buffer-layout").Layout<SetStakeDelegatedArgs>; export declare function setStakeDelegated(args: SetStakeDelegatedArgs, accounts: SetStakeDelegatedAccounts, remainingAccounts?: Array<IAccountMeta | IAccountSignerMeta>, programAddress?: Address): IInstruction<string, readonly (import("@solana/kit").IAccountLookupMeta<string, string> | IAccountMeta<string>)[]>; //# sourceMappingURL=setStakeDelegated.d.ts.map