getWalletAddressBalances method

Future<TGetWalletAddressBalancesResponse> getWalletAddressBalances({
  1. required TGetWalletAddressBalancesBody input,
})

Get balances for a single wallet account address on the specified network.

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));
}