Returns currency info for specified currency
export type GetCurrencyProps = { currencyId: string; }
const currency = await assetlayer.currencies.info({ currencyId: 'currencyId' });
type ReturnType = Currency;
Last updated 1 year ago