UNPKG

@kamino-finance/klend-sdk

Version:

Typescript SDK for interacting with the Kamino Lending (klend) protocol

13 lines 534 B
import { TransactionInstruction, PublicKey } from "@solana/web3.js"; import BN from "bn.js"; export interface GiveUpPendingFeesArgs { maxAmountToGiveUp: BN; } export interface GiveUpPendingFeesAccounts { adminAuthority: PublicKey; vaultState: PublicKey; klendProgram: PublicKey; } export declare const layout: any; export declare function giveUpPendingFees(args: GiveUpPendingFeesArgs, accounts: GiveUpPendingFeesAccounts, programId?: PublicKey): TransactionInstruction; //# sourceMappingURL=giveUpPendingFees.d.ts.map