@kamino-finance/kliquidity-sdk
Version:
Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol
12 lines • 555 B
TypeScript
import { Address, IInstruction, TransactionSigner } from "@solana/kit";
export interface SetProtocolFeeRateArgs {
protocolFeeRate: number;
}
export interface SetProtocolFeeRateAccounts {
whirlpoolsConfig: Address;
whirlpool: Address;
feeAuthority: TransactionSigner;
}
export declare const layout: import("buffer-layout").Layout<unknown>;
export declare function setProtocolFeeRate(args: SetProtocolFeeRateArgs, accounts: SetProtocolFeeRateAccounts, programAddress?: Address): IInstruction;
//# sourceMappingURL=setProtocolFeeRate.d.ts.map