UNPKG

@kamino-finance/kliquidity-sdk

Version:

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

19 lines 721 B
import { Address, IAccountMeta, IInstruction, TransactionSigner } from "@solana/kit"; export interface ClaimFeeAccounts { lbPair: Address; position: Address; binArrayLower: Address; binArrayUpper: Address; sender: TransactionSigner; reserveX: Address; reserveY: Address; userTokenX: Address; userTokenY: Address; tokenXMint: Address; tokenYMint: Address; tokenProgram: Address; eventAuthority: Address; program: Address; } export declare function claimFee(accounts: ClaimFeeAccounts, programAddress?: Address): IInstruction<string, readonly (IAccountMeta<string> | import("@solana/kit").IAccountLookupMeta<string, string>)[]>; //# sourceMappingURL=claimFee.d.ts.map