info()
Returns currency info for specified currency
Parameters
export type GetCurrencyProps = {
currencyId: string;
}
Examples
const currency = await assetlayer.currencies.info({
currencyId: 'currencyId'
});
Return Types
type ReturnType = Currency;
Alternatives
getCurrency()Last updated