* Used to make public requests to the futures (FAPI) API * @param path * @param data * @param method * @returns
(path: string, data: Dict = {}, method: HttpMethod = 'GET')
| 554 | * @returns |
| 555 | */ |
| 556 | async publicFuturesRequest(path: string, data: Dict = {}, method: HttpMethod = 'GET') { |
| 557 | return await this.publicRequest(this.getFapiUrl() + path, data, method); |
| 558 | } |
| 559 | |
| 560 | /** |
| 561 | * Used to make public requests to the delivery (DAPI) API |
no test coverage detected