Get Other Account Info
In this section you will learn how to queries the account balance of another account on the Hedera network using the provided account credentials and the Hedera JavaScript SDK.
Prerequisites
Completed the Introduction step.
Completed the Environment Setup step.
Completed the Created an Account step.
Step 1 : Imports
The code imports necessary modules from the Hedera JavaScript SDK (
@hashgraph/sdk
):Client
,AccountBalanceQuery
, andPrivateKey
.It also imports the
dotenv
module to load environment variables from a.env
file located in theAccount
directory.
Step 2 : Environment Variables Retrieval
These lines retrieve environment variables such as MY_ACCOUNT_ID
, MY_PRIVATE_KEY
, and OTHER_ACCOUNT_ID
from the .env
file using process.env
.
Step 3 : Main Function
It creates a client instance for the Hedera testnet.
It sets the operator account for the client using the user's account ID and private key.
It creates an
AccountBalanceQuery
object and sets the account ID for which the balance needs to be queried tootherAccountId
.It executes the query using the client.
If the query is successful, it logs the account balance and information of the other account to the console.
Finally, it exits the process.
Step 4: Execution
This line calls the main()
function to start the execution of the script.
Last updated
Was this helpful?