Get Seal
Summary:
The script queries a smart contract deployed on the Hedera network to retrieve information about a seal using a specific hash. It showcases how to send queries to the smart contract and process the query results.
1. Imports and Environment Setup:
It imports necessary modules from the Hedera JavaScript SDK (
@hashgraph/sdk
) and thedotenv
module to load environment variables from a.env
file located in theSmartContract_Service
directory.
2. Environment Variables Retrieval and Validation:
It retrieves the account ID, private key, contract ID, and hash from the
.env
file.It checks whether these variables are present; otherwise, it throws an error.
3. Client Setup:
It creates a client instance for the Hedera testnet and sets the operator account using the user's account ID and private key.
4. Main Function:
It defines the
main()
function, which is the entry point of the script.It creates a query to call the
getSeal
function of the smart contract with the provided hash parameter.The query is submitted to the Hedera network, and the result is retrieved.
The sealed block, revoked block, and seal owner are extracted from the query result and logged to the console.
5. Execution:
This line calls the
main()
function to start the execution of the script.
Last updated
Was this helpful?