UNPKG

@kamino-finance/kliquidity-sdk

Version:

Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol

21 lines 844 B
import { Address, IAccountMeta, IInstruction, TransactionSigner } from "@solana/kit"; import BN from "bn.js"; export interface ClaimRewardArgs { rewardIndex: BN; } export interface ClaimRewardAccounts { lbPair: Address; position: Address; binArrayLower: Address; binArrayUpper: Address; sender: TransactionSigner; rewardVault: Address; rewardMint: Address; userTokenAccount: Address; tokenProgram: Address; eventAuthority: Address; program: Address; } export declare const layout: import("buffer-layout").Layout<unknown>; export declare function claimReward(args: ClaimRewardArgs, accounts: ClaimRewardAccounts, programAddress?: Address): IInstruction<string, readonly (IAccountMeta<string> | import("@solana/kit").IAccountLookupMeta<string, string>)[]>; //# sourceMappingURL=claimReward.d.ts.map