kamino-sdk-beta
Version:
Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol
14 lines • 587 B
TypeScript
import { TransactionInstruction, PublicKey } from "@solana/web3.js";
import * as types from "../types";
export interface UpdateFeeParametersArgs {
feeParameter: types.FeeParameterFields;
}
export interface UpdateFeeParametersAccounts {
lbPair: PublicKey;
admin: PublicKey;
eventAuthority: PublicKey;
program: PublicKey;
}
export declare const layout: any;
export declare function updateFeeParameters(args: UpdateFeeParametersArgs, accounts: UpdateFeeParametersAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=updateFeeParameters.d.ts.map