MCPcopy Create free account
hub / github.com/ccxt/node-binance-api / privateSpotRequest

Method privateSpotRequest

src/node-binance-api.ts:722–724  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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

Callers 15

orderMethod · 0.95
ocoOrderMethod · 0.95
cancelMethod · 0.95
cancelAllMethod · 0.95
orderStatusMethod · 0.95
openOrdersMethod · 0.95
cancelAllOrdersMethod · 0.95
allOrdersMethod · 0.95
universalTransferMethod · 0.95
dustLogMethod · 0.95
dustTransferMethod · 0.95

Calls 2

signedRequestMethod · 0.95
getSpotUrlMethod · 0.95

Tested by

no test coverage detected