UNPKG

@marinade.finance/kamino-sdk

Version:
12 lines (11 loc) 448 B
import { TransactionInstruction, PublicKey } from '@solana/web3.js'; export interface SetProtocolFeeRateArgs { protocolFeeRate: number; } export interface SetProtocolFeeRateAccounts { whirlpoolsConfig: PublicKey; whirlpool: PublicKey; feeAuthority: PublicKey; } export declare const layout: any; export declare function setProtocolFeeRate(args: SetProtocolFeeRateArgs, accounts: SetProtocolFeeRateAccounts): TransactionInstruction;