UNPKG

@kamino-finance/klend-sdk

Version:

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

21 lines 850 B
import { TransactionInstruction, PublicKey } from "@solana/web3.js"; export interface RefreshObligationFarmsForReserveArgs { mode: number; } export interface RefreshObligationFarmsForReserveAccounts { crank: PublicKey; baseAccounts: { obligation: PublicKey; lendingMarketAuthority: PublicKey; reserve: PublicKey; reserveFarmState: PublicKey; obligationFarmUserState: PublicKey; lendingMarket: PublicKey; }; farmsProgram: PublicKey; rent: PublicKey; systemProgram: PublicKey; } export declare const layout: any; export declare function refreshObligationFarmsForReserve(args: RefreshObligationFarmsForReserveArgs, accounts: RefreshObligationFarmsForReserveAccounts, programId?: PublicKey): TransactionInstruction; //# sourceMappingURL=refreshObligationFarmsForReserve.d.ts.map