@marinade.finance/kamino-sdk
Version:
14 lines (13 loc) • 479 B
TypeScript
import { TransactionInstruction, PublicKey } from '@solana/web3.js';
export interface CollectFeesAccounts {
whirlpool: PublicKey;
positionAuthority: PublicKey;
position: PublicKey;
positionTokenAccount: PublicKey;
tokenOwnerAccountA: PublicKey;
tokenVaultA: PublicKey;
tokenOwnerAccountB: PublicKey;
tokenVaultB: PublicKey;
tokenProgram: PublicKey;
}
export declare function collectFees(accounts: CollectFeesAccounts): TransactionInstruction;