* Create a public spot/margin request * @param {string} path - url path * @param {object} data - The data to send * @param {string} method - the http method * @param {boolean} noDataInSignature - Prevents data from being added to signature * @return {undefined}
(path: string, data: Dict = {}, method: HttpMethod = 'GET')
| 708 | * @return {undefined} |
| 709 | */ |
| 710 | async publicSpotRequest(path: string, data: Dict = {}, method: HttpMethod = 'GET') { |
| 711 | return await this.publicRequest/**/(this.getSpotUrl() + path, data, method); |
| 712 | } |
| 713 | |
| 714 | /** |
| 715 | * Create a signed spot request |
no test coverage detected