UNPKG

@hubbleprotocol/farms-sdk

Version:
13 lines (12 loc) 478 B
import { TransactionInstruction, PublicKey } from "@solana/web3.js"; import BN from "bn.js"; export interface SetStakeDelegatedArgs { newAmount: BN; } export interface SetStakeDelegatedAccounts { delegateAuthority: PublicKey; userState: PublicKey; farmState: PublicKey; } export declare const layout: any; export declare function setStakeDelegated(args: SetStakeDelegatedArgs, accounts: SetStakeDelegatedAccounts, programId?: PublicKey): TransactionInstruction;