@kamino-finance/klend-sdk
Version:
Typescript SDK for interacting with the Kamino Lending (klend) protocol
19 lines • 799 B
TypeScript
import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface RefreshObligationFarmsForReserveArgs {
mode: number;
}
export interface RefreshObligationFarmsForReserveAccounts {
crank: PublicKey;
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