UNPKG

bybit-api

Version:

Complete & robust Node.js SDK for Bybit's REST APIs and WebSockets, with TypeScript & strong end to end tests.

16 lines (15 loc) 287 B
export interface SpotBalance { coin: string; coinId: string; coinName: string; total: string; free: string; locked: string; } export interface SpotBalances { balances: SpotBalance[]; } export interface SpotLastPrice { symbol: string; price: string; }