UNPKG

@kamino-finance/kliquidity-sdk

Version:

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

12 lines 671 B
import { Address, IAccountMeta, 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<string, readonly (IAccountMeta<string> | import("@solana/kit").IAccountLookupMeta<string, string>)[]>; //# sourceMappingURL=setProtocolFeeRate.d.ts.map