getCurrencySummary()
Get currency summaries for all currencies in the specified app
Parameters
export type GetCurrencySummaryProps = {
appId: string;
}
Examples
const currencies = await assetlayer.currencies.getCurrencySummary({
appId: 'appId'
});
Return Types
type ReturnType = CurrencySummary[];
Last updated