@kamino-finance/klend-sdk
Version:
Typescript SDK for interacting with the Kamino Lending (klend) protocol
23 lines • 871 B
TypeScript
import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface WithdrawPendingFeesAccounts {
adminAuthority: PublicKey;
vaultState: PublicKey;
reserve: PublicKey;
tokenVault: PublicKey;
ctokenVault: PublicKey;
baseVaultAuthority: PublicKey;
tokenAta: PublicKey;
tokenMint: PublicKey;
tokenProgram: PublicKey;
/** CPI accounts */
lendingMarket: PublicKey;
lendingMarketAuthority: PublicKey;
reserveLiquiditySupply: PublicKey;
reserveCollateralMint: PublicKey;
klendProgram: PublicKey;
instructionSysvarAccount: PublicKey;
reserveCollateralTokenProgram: PublicKey;
sharesTokenProgram: PublicKey;
}
export declare function withdrawPendingFees(accounts: WithdrawPendingFeesAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=withdrawPendingFees.d.ts.map