UNPKG

bybit-api-gnome

Version:

Forked for Lick Hunter, Complete & robust node.js SDK for Bybit's REST APIs and WebSockets v5, with TypeScript & integration 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; }