Wallet

Documentation on interacting with Mexc's Wallet API functions through the PENDAX Javascript SDK.

Query the currency information

circle-info

Please refer to the official Mexc API Docs for the Required parameters.

https://mxcdevelop.github.io/apidocs/spot_v3_en/#query-the-currency-informationarrow-up-right

Function Name:

getCurrencyInformationSpot()

Usage:

import { createExchange } from "./exchanges/exchange.js";

   let myMexcExchanges  = createExchange({
      exchange: "mexc",
      authenticate: "true",
      key: "myKey",
      secret: "mySecret",
      label: "mexc"
  });

async function getCurrencyInformationSpot(exchange, options) {
    try {
        let result = await exchange.getCurrencyInformationSpot(options);
        console.log(result);
    } catch (error) {
        console.log(error.message);
    }
}

let result = await getCurrencyInformationSpot(myMexcExchanges);

Withdraw

circle-info

Please refer to the official Mexc API Docs for the Required parameters.

https://mxcdevelop.github.io/apidocs/spot_v3_en/#withdrawarrow-up-right

Function Name:

Usage:

Cancel withdraw

circle-info

Please refer to the official Mexc API Docs for the Required parameters.

https://mxcdevelop.github.io/apidocs/spot_v3_en/#cancel-withdrawarrow-up-right

Function Name:

Usage:

Deposit History(supporting network)

circle-info

Please refer to the official Mexc API Docs for the Required parameters.

https://mxcdevelop.github.io/apidocs/spot_v3_en/#deposit-history-supporting-networkarrow-up-right

Function Name:

Usage:

Withdraw History (supporting network)

circle-info

Please refer to the official Mexc API Docs for the Required parameters.

https://mxcdevelop.github.io/apidocs/spot_v3_en/#withdraw-history-supporting-networkarrow-up-right

Function Name:

Usage:

Generate deposit address (supporting network)

circle-info

Please refer to the official Mexc API Docs for the Required parameters.

https://mxcdevelop.github.io/apidocs/spot_v3_en/#generate-deposit-address-supporting-networkarrow-up-right

Function Name:

Usage:

Deposit Address (supporting network)

circle-info

Please refer to the official Mexc API Docs for the Required parameters.

https://mxcdevelop.github.io/apidocs/spot_v3_en/#deposit-address-supporting-networkarrow-up-right

Function Name:

Usage:

Withdraw Address (supporting network)

circle-info

Please refer to the official Mexc API Docs for the Required parameters.

https://mxcdevelop.github.io/apidocs/spot_v3_en/#withdraw-address-supporting-networkarrow-up-right

Function Name:

Usage:

User Universal Transfer

circle-info

Please refer to the official Mexc API Docs for the Required parameters.

https://mxcdevelop.github.io/apidocs/spot_v3_en/#user-universal-transferarrow-up-right

Function Name:

Usage:

Query User Universal Transfer History

circle-info

Please refer to the official Mexc API Docs for the Required parameters.

https://mxcdevelop.github.io/apidocs/spot_v3_en/#query-user-universal-transfer-historyarrow-up-right

Function Name:

Usage:

Query User Universal Transfer History (by tranId)

circle-info

Function Name:

Usage:

Get Assets That Can Be Converted Into MX

circle-info

Please refer to the official Mexc API Docs for the Required parameters.

https://mxcdevelop.github.io/apidocs/spot_v3_en/#get-assets-that-can-be-converted-into-mxarrow-up-right

Function Name:

Usage:

Dust Transfer

triangle-exclamation
circle-info

Please refer to the official Mexc API Docs for the Required parameters.

https://mxcdevelop.github.io/apidocs/spot_v3_en/#dust-transferarrow-up-right

Function Name:

Usage:

DustLog

triangle-exclamation
circle-info

Please refer to the official Mexc API Docs for the Required parameters.

https://mxcdevelop.github.io/apidocs/spot_v3_en/#dustlogarrow-up-right

Function Name:

Usage:

Last updated