getAllCurrencies()
// Note: an asynchronous request.
const currencyInfo = async () => {
const info = await mitum.currency.getAllCurrencies();
console.log(info);
};
currencyInfo();
// output
[ 'currency:MIT' ]Last updated
// Note: an asynchronous request.
const currencyInfo = async () => {
const info = await mitum.currency.getAllCurrencies();
console.log(info);
};
currencyInfo();
// output
[ 'currency:MIT' ]Last updated