ETF
Documentation on interacting with Mexc's ETF API functions through the PENDAX Javascript SDK.
Function Name:
getEtfInfo()
Usage:
import { createExchange } from "./exchanges/exchange.js";
let myMexcExchanges = createExchange({
exchange: "mexc",
authenticate: "true",
key: "myKey",
secret: "mySecret",
label: "mexc"
});
async function getEtfInfo(exchange, options) {
try {
let result = await exchange.getEtfInfo(options);
console.log(result);
} catch (error) {
console.log(error.message);
}
}
let result = await getEtfInfo(myMexcExchanges);
Last updated