@marinade.finance/kamino-sdk
Version:
13 lines (12 loc) • 483 B
TypeScript
import { TransactionInstruction, PublicKey } from '@solana/web3.js';
export interface CollectProtocolFeesAccounts {
whirlpoolsConfig: PublicKey;
whirlpool: PublicKey;
collectProtocolFeesAuthority: PublicKey;
tokenVaultA: PublicKey;
tokenVaultB: PublicKey;
tokenDestinationA: PublicKey;
tokenDestinationB: PublicKey;
tokenProgram: PublicKey;
}
export declare function collectProtocolFees(accounts: CollectProtocolFeesAccounts): TransactionInstruction;