Skip to content

Latest commit

 

History

History
60 lines (43 loc) · 1.9 KB

get-account-balance.md

File metadata and controls

60 lines (43 loc) · 1.9 KB

Get account balance

A query that returns the account balance for the specified account. Requesting an account balance is currently free of charge. Queries do not change the state of the account or require network consensus. The information is returned from a single node processing the query.

Query Fees

  • Please see the transaction and query fees table for base transaction fee
  • Please use the Hedera fee estimator to estimate your query fee cost

Query Signing Requirements

  • The client operator private key is required to sign the query request
Constructor Description
new AccountBalanceQuery() Initializes the AccountBalanceQuery object
new AccountBalanceQuery

Methods

{% tabs %} {% tab title="V1" %}

Method Type Description
setAccountId(<accountId>) AccountID The account ID to return the current balance for.

{% code title="Java" %}

//Create the query
AccountBalanceQuery query = new AccountBalanceQuery()
     .setAccountId(newAccountId);

//Sign with the client operator account private key and submit to a Hedera network
Hbar accountBalance = query.execute(client);

System.out.println(accountBalance);

//v1.3.2

{% endcode %}

{% code title="JavaScript" %}

//Create the query
const query = new AccountBalanceQuery()
     .setAccountId(newAccountId);

//Sign with the client operator account private key and submit to a Hedera network
Hbar accountBalance = await query.execute(client);

console.log(accountBalance);

//v1.4.4

{% endcode %} {% endtab %} {% endtabs %}