UNPKG

kamino-sdk-beta

Version:

Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol

15 lines 573 B
import { TransactionInstruction, PublicKey } from "@solana/web3.js"; import BN from "bn.js"; export interface UpdateRewardFunderArgs { rewardIndex: BN; newFunder: PublicKey; } export interface UpdateRewardFunderAccounts { lbPair: PublicKey; admin: PublicKey; eventAuthority: PublicKey; program: PublicKey; } export declare const layout: any; export declare function updateRewardFunder(args: UpdateRewardFunderArgs, accounts: UpdateRewardFunderAccounts, programId?: PublicKey): TransactionInstruction; //# sourceMappingURL=updateRewardFunder.d.ts.map