@kamino-finance/kliquidity-sdk
Version:
Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol
12 lines • 615 B
TypeScript
import { Address, IAccountMeta, 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<string, readonly (IAccountMeta<string> | import("@solana/kit").IAccountLookupMeta<string, string>)[]>;
//# sourceMappingURL=setFeeRate.d.ts.map