@marinade.finance/kamino-sdk
Version:
12 lines (11 loc) • 440 B
TypeScript
import { TransactionInstruction, PublicKey } from '@solana/web3.js';
export interface SetDefaultFeeRateArgs {
defaultFeeRate: number;
}
export interface SetDefaultFeeRateAccounts {
whirlpoolsConfig: PublicKey;
feeTier: PublicKey;
feeAuthority: PublicKey;
}
export declare const layout: any;
export declare function setDefaultFeeRate(args: SetDefaultFeeRateArgs, accounts: SetDefaultFeeRateAccounts): TransactionInstruction;