export type GetUserAssetsBaseProps = {
walletUserId?: string; // specifies walletId if user is an app-owned wallet
}
const asset = await assetlayer.assets.getUserAssets();
const assets = await assetlayer.assets.getUserAssets({
walletUserId: 'walletUserId'
});
type ReturnType = Asset[];