* Ping binance * @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/general-endpoints#test-connectivity * @return {promise or undefined} - omitting the callback returns a promise
()
| 4211 | * @return {promise or undefined} - omitting the callback returns a promise |
| 4212 | */ |
| 4213 | async ping() { |
| 4214 | return await this.publicSpotRequest('v3/ping', {}); |
| 4215 | } |
| 4216 | |
| 4217 | parseAggTrades(symbol: string, trades: any[]): AggregatedTrade[] { |
| 4218 | const parsedTrades: AggregatedTrade[] = []; |
no test coverage detected