getWalletAddressBalances method
Future<TGetWalletAddressBalancesResponse>
getWalletAddressBalances({
- required TGetWalletAddressBalancesBody input,
Get balances of supported assets for an address on the specified network. Only non-zero balances are returned. This feature is in beta - please contact support for access.
Sign the provided TGetWalletAddressBalancesBody with the client's stamp function and submit the request (POST /public/v1/query/get_wallet_address_balances).
See also: stampGetWalletAddressBalances.
Implementation
Future<TGetWalletAddressBalancesResponse> getWalletAddressBalances({
required TGetWalletAddressBalancesBody input,
}) async {
return await request<TGetWalletAddressBalancesBody,
TGetWalletAddressBalancesResponse>(
"/public/v1/query/get_wallet_address_balances",
input,
(json) => TGetWalletAddressBalancesResponse.fromJson(json));
}