export type IncreaseCurrencyBalanceProps = {
currencyId: string;
amount: number;
userId?: string;
walletUserId?: string;
}
const balance = await assetlayer.currencies.increaseCurrencyBalance({
currencyId: 'currencyId',
amount: 100
});
type ReturnType = number;