Get the currency balances for the authenticated user for all currencies in the specified app
export type GetCurrencyBalanceProps = { appId: string; walletUserId?: string; }
const currencies = await assetlayer.currencies.getCurrencyBalance({ appId: 'appId' });
type ReturnType = CurrencyWithBalance[];
Last updated 1 year ago