@kamino-finance/kliquidity-sdk
Version:
Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol
11 lines • 696 B
TypeScript
import { Address, IAccountMeta, IInstruction, TransactionSigner } from "@solana/kit";
export interface SetDefaultProtocolFeeRateArgs {
defaultProtocolFeeRate: number;
}
export interface SetDefaultProtocolFeeRateAccounts {
whirlpoolsConfig: Address;
feeAuthority: TransactionSigner;
}
export declare const layout: import("buffer-layout").Layout<unknown>;
export declare function setDefaultProtocolFeeRate(args: SetDefaultProtocolFeeRateArgs, accounts: SetDefaultProtocolFeeRateAccounts, programAddress?: Address): IInstruction<string, readonly (IAccountMeta<string> | import("@solana/kit").IAccountLookupMeta<string, string>)[]>;
//# sourceMappingURL=setDefaultProtocolFeeRate.d.ts.map