kamino-sdk-beta
Version:
Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol
19 lines • 627 B
TypeScript
import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface ClaimFeeAccounts {
lbPair: PublicKey;
position: PublicKey;
binArrayLower: PublicKey;
binArrayUpper: PublicKey;
sender: PublicKey;
reserveX: PublicKey;
reserveY: PublicKey;
userTokenX: PublicKey;
userTokenY: PublicKey;
tokenXMint: PublicKey;
tokenYMint: PublicKey;
tokenProgram: PublicKey;
eventAuthority: PublicKey;
program: PublicKey;
}
export declare function claimFee(accounts: ClaimFeeAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=claimFee.d.ts.map