UNPKG

@kamino-finance/kliquidity-sdk

Version:

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

22 lines 941 B
import { Address, IInstruction, Option, TransactionSigner } from "@solana/kit"; import * as types from "../types"; export interface AddLiquidityByStrategyOneSideArgs { liquidityParameter: types.LiquidityParameterByStrategyOneSideFields; } export interface AddLiquidityByStrategyOneSideAccounts { position: Address; lbPair: Address; binArrayBitmapExtension: Option<Address>; userToken: Address; reserve: Address; tokenMint: Address; binArrayLower: Address; binArrayUpper: Address; sender: TransactionSigner; tokenProgram: Address; eventAuthority: Address; program: Address; } export declare const layout: import("buffer-layout").Layout<unknown>; export declare function addLiquidityByStrategyOneSide(args: AddLiquidityByStrategyOneSideArgs, accounts: AddLiquidityByStrategyOneSideAccounts, programAddress?: Address): IInstruction; //# sourceMappingURL=addLiquidityByStrategyOneSide.d.ts.map