UNPKG

sei-agent-kit

Version:

A package for building AI agents on the SEI blockchain

27 lines 748 B
import { HexString } from "citrex-sdk/types"; export interface product { active: boolean; baseAsset: string; baseAssetAddress: HexString; increment: bigint; id: number; initialLongWeight: bigint; initialShortWeight: bigint; isMakerRebate: boolean; makerFee: bigint; maintenanceLongWeight: bigint; maintenanceShortWeight: bigint; markPrice: number; maxQuantity: bigint; minQuantity: bigint; quoteAsset: string; quoteAssetAddress: HexString; symbol: string; takerFee: bigint; type: string; } export interface productParsed { products: product[]; } export declare function citrexGetProducts(): Promise<productParsed | undefined>; //# sourceMappingURL=getProducts.d.ts.map