UNPKG

@kamino-finance/kliquidity-sdk

Version:

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

15 lines 728 B
import { Address, IAccountMeta, IInstruction, TransactionSigner } from "@solana/kit"; import BN from "bn.js"; export interface SetLockReleaseSlotArgs { newLockReleaseSlot: BN; } export interface SetLockReleaseSlotAccounts { position: Address; lbPair: Address; sender: TransactionSigner; eventAuthority: Address; program: Address; } export declare const layout: import("buffer-layout").Layout<unknown>; export declare function setLockReleaseSlot(args: SetLockReleaseSlotArgs, accounts: SetLockReleaseSlotAccounts, programAddress?: Address): IInstruction<string, readonly (IAccountMeta<string> | import("@solana/kit").IAccountLookupMeta<string, string>)[]>; //# sourceMappingURL=setLockReleaseSlot.d.ts.map