UNPKG

equation-sdk

Version:

🛠 An SDK for building applications on top of Equation.

9 lines (8 loc) • 611 B
import { IOrdersParams, IPositionsParams } from '../../types'; export declare function getTokensPrice(addresses: string[] | undefined): Promise<unknown>; export declare function getMultiTokens(addresses: string[] | undefined): Promise<unknown>; export declare function getMarkets(): Promise<unknown>; export declare function getMarketInfo(address: string | undefined): Promise<unknown>; export declare function getPositions(params: IPositionsParams): Promise<unknown>; export declare function getOrders(params: IOrdersParams): Promise<unknown>; export declare function getGasConfig(): Promise<unknown>;