Wallet
Documentation on interacting with Mexc's Wallet API functions through the PENDAX Javascript SDK.
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
Function Name:
Usage:
Cancel withdraw
Function Name:
Usage:
Deposit History(supporting network)
Function Name:
Usage:
Withdraw History (supporting network)
Function Name:
Usage:
Generate deposit address (supporting network)
Function Name:
Usage:
Deposit Address (supporting network)
Function Name:
Usage:
Withdraw Address (supporting network)
Function Name:
Usage:
User Universal Transfer
Function Name:
Usage:
Query User Universal Transfer History
Function Name:
Usage:
Query User Universal Transfer History (by tranId)
Function Name:
Usage:
Get Assets That Can Be Converted Into MX
Function Name:
Usage:
Dust Transfer
This function is currently under construction and may fail or give unexpected behavior
Function Name:
Usage:
DustLog
This function is currently under construction and may fail or give unexpected behavior
Function Name:
Usage:
Last updated