UNPKG

kamino-sdk-beta

Version:

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

15 lines 590 B
import { TransactionInstruction, PublicKey } from "@solana/web3.js"; import BN from "bn.js"; export interface IncreaseOracleLengthArgs { lengthToAdd: BN; } export interface IncreaseOracleLengthAccounts { oracle: PublicKey; funder: PublicKey; systemProgram: PublicKey; eventAuthority: PublicKey; program: PublicKey; } export declare const layout: any; export declare function increaseOracleLength(args: IncreaseOracleLengthArgs, accounts: IncreaseOracleLengthAccounts, programId?: PublicKey): TransactionInstruction; //# sourceMappingURL=increaseOracleLength.d.ts.map