UNPKG

goosefx-ssl-sdk-prism

Version:

SDK for interacting with GooseFX Single-sided Liquidity pools

12 lines (11 loc) 353 B
import * as lo from '@solana/buffer-layout'; import { PublicKey } from "@solana/web3.js"; export interface LiquidityAccountLayout { sighash: Uint8Array; mint: PublicKey; bump: number; share: bigint; ptMinted: bigint; amountDeposited: bigint; } export declare const LIQUIDITY_ACCOUNT_LAYOUT: lo.Structure<LiquidityAccountLayout>;