kamino-sdk-beta
Version:
Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol
12 lines • 463 B
TypeScript
import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface SetFeeRateArgs {
feeRate: number;
}
export interface SetFeeRateAccounts {
whirlpoolsConfig: PublicKey;
whirlpool: PublicKey;
feeAuthority: PublicKey;
}
export declare const layout: any;
export declare function setFeeRate(args: SetFeeRateArgs, accounts: SetFeeRateAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=setFeeRate.d.ts.map