sei-agent-kit
Version:
A package for building AI agents on the SEI blockchain
27 lines • 777 B
TypeScript
import { HexString } from '../../../node_modules/citrex-sdk/lib/types.js';
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