Wallet

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

Query the currency information

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

https://mxcdevelop.github.io/apidocs/spot_v3_en/#query-the-currency-information

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

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

https://mxcdevelop.github.io/apidocs/spot_v3_en/#withdraw

Function Name:

Usage:

Cancel withdraw

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

https://mxcdevelop.github.io/apidocs/spot_v3_en/#cancel-withdraw

Function Name:

Usage:

Deposit History(supporting network)

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

https://mxcdevelop.github.io/apidocs/spot_v3_en/#deposit-history-supporting-network

Function Name:

Usage:

Withdraw History (supporting network)

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

https://mxcdevelop.github.io/apidocs/spot_v3_en/#withdraw-history-supporting-network

Function Name:

Usage:

Generate deposit address (supporting network)

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

https://mxcdevelop.github.io/apidocs/spot_v3_en/#generate-deposit-address-supporting-network

Function Name:

Usage:

Deposit Address (supporting network)

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

https://mxcdevelop.github.io/apidocs/spot_v3_en/#deposit-address-supporting-network

Function Name:

Usage:

Withdraw Address (supporting network)

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

https://mxcdevelop.github.io/apidocs/spot_v3_en/#withdraw-address-supporting-network

Function Name:

Usage:

User Universal Transfer

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

https://mxcdevelop.github.io/apidocs/spot_v3_en/#user-universal-transfer

Function Name:

Usage:

Query User Universal Transfer History

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

https://mxcdevelop.github.io/apidocs/spot_v3_en/#query-user-universal-transfer-history

Function Name:

Usage:

Query User Universal Transfer History (by tranId)

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

https://mxcdevelop.github.io/apidocs/spot_v3_en/#query-user-universal-transfer-history-by-tranid

Function Name:

Usage:

Get Assets That Can Be Converted Into MX

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-mx

Function Name:

Usage:

Dust Transfer

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

https://mxcdevelop.github.io/apidocs/spot_v3_en/#dust-transfer

Function Name:

Usage:

DustLog

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

https://mxcdevelop.github.io/apidocs/spot_v3_en/#dustlog

Function Name:

Usage:

Last updated