* Create a signed spot 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', noDataInSignature = false)
| 720 | * @return {undefined} |
| 721 | */ |
| 722 | async privateSpotRequest(path: string, data: Dict = {}, method: HttpMethod = 'GET', noDataInSignature = false) { |
| 723 | return await this.signedRequest/**/(this.getSpotUrl() + path, data, method, noDataInSignature); |
| 724 | } |
| 725 | |
| 726 | /** |
| 727 | * Create a signed SAPI request |
no test coverage detected