kamino-sdk-beta
Version:
Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol
22 lines • 894 B
TypeScript
import { TransactionInstruction, PublicKey } from "@solana/web3.js";
import * as types from "../types";
export interface CollectProtocolFeesV2Args {
remainingAccountsInfo: types.RemainingAccountsInfoFields | null;
}
export interface CollectProtocolFeesV2Accounts {
whirlpoolsConfig: PublicKey;
whirlpool: PublicKey;
collectProtocolFeesAuthority: PublicKey;
tokenMintA: PublicKey;
tokenMintB: PublicKey;
tokenVaultA: PublicKey;
tokenVaultB: PublicKey;
tokenDestinationA: PublicKey;
tokenDestinationB: PublicKey;
tokenProgramA: PublicKey;
tokenProgramB: PublicKey;
memoProgram: PublicKey;
}
export declare const layout: any;
export declare function collectProtocolFeesV2(args: CollectProtocolFeesV2Args, accounts: CollectProtocolFeesV2Accounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=collectProtocolFeesV2.d.ts.map