UNPKG

kamino-sdk-beta

Version:

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

19 lines 670 B
import { TransactionInstruction, PublicKey } from "@solana/web3.js"; import BN from "bn.js"; export interface SetRewardParamsArgs { rewardIndex: number; emissionsPerSecondX64: BN; openTime: BN; endTime: BN; } export interface SetRewardParamsAccounts { authority: PublicKey; ammConfig: PublicKey; poolState: PublicKey; operationState: PublicKey; tokenProgram: PublicKey; tokenProgram2022: PublicKey; } export declare const layout: any; export declare function setRewardParams(args: SetRewardParamsArgs, accounts: SetRewardParamsAccounts, programId?: PublicKey): TransactionInstruction; //# sourceMappingURL=setRewardParams.d.ts.map