UNPKG

@kamino-finance/kliquidity-sdk

Version:

Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol

12 lines 499 B
import { Address, IInstruction, TransactionSigner } from "@solana/kit"; export interface SetFeeRateArgs { feeRate: number; } export interface SetFeeRateAccounts { whirlpoolsConfig: Address; whirlpool: Address; feeAuthority: TransactionSigner; } export declare const layout: import("buffer-layout").Layout<unknown>; export declare function setFeeRate(args: SetFeeRateArgs, accounts: SetFeeRateAccounts, programAddress?: Address): IInstruction; //# sourceMappingURL=setFeeRate.d.ts.map