Get account token balance
Constructor
Description
new TokenBalanceQuery()Method
Type
Requirement
Map<TokenId, Long> tokenBalance = new TokenBalanceQuery()
.setAccountId(accountId)
.execute(client);
System.out.println("The token balance(s) for this account: " +tokenBalance);
//Version: 1.2.2 const tokenBalance = await new TokenBalanceQuery()
.setAccountId(accountId)
.execute(client);
console.log("The token balance(s) for this account: " +tokenBalance.get("<tokenId>"));
//Version 1.4.2Last updated