@frakt-protocol/frakt-sdk
Version:
Frakt SDK for interacting with frakt.xyz protocols
16 lines (15 loc) • 483 B
TypeScript
/// <reference types="bn.js" />
import { BN, web3 } from '@project-serum/anchor';
declare type UnstakeLiquidityHarvest = (params: {
programId: web3.PublicKey;
connection: web3.Connection;
liquidityPool: web3.PublicKey;
user: web3.PublicKey;
deposit: web3.PublicKey;
amount: BN | number;
adminPubkey: web3.PublicKey;
}) => Promise<{
ix: web3.TransactionInstruction;
}>;
export declare const unstakeLiquidityHarvest: UnstakeLiquidityHarvest;
export {};