Get account token balance
Method
Type
Requirement
//Create the query
AccountBalanceQuery query = new AccountBalanceQuery()
.setAccountId(accountId);
//Sign with the operator private key and submit to a Hedera network
AccountBalance tokenBalance = query.execute(client);
System.out.println("The token balance(s) for this account: " +tokenBalance.tokens);
//v2.0.9//Create the query
const query = new AccountBalanceQuery()
.setAccountId(accountId);
//Sign with the client operator private key and submit to a Hedera network
const tokenBalance = await query.execute(client);
console.log("The token balance(s) for this account: " +tokenBalance.tokens.toString());
//v2.0.7//Create the query
query := hedera.NewAccountBalanceQuery().
SetAccountID(accountId)
//Sign with the client operator private key and submit to a Hedera network
tokenBalance, err := query.Execute(client)
if err != nil {
panic(err)
}
fmt.Printf("The token balance(s) for this account: %v\n", tokenBalance)
//v2.1.0Last updated