Deploy to Hedera
Summary:
The script demonstrates how to deploy a smart contract on the Hedera network by first uploading its bytecode to a file, then instantiating the contract using the uploaded bytecode and providing any constructor parameters required. Finally, it logs the contract ID once deployed successfully.
1. Imports and Environment Setup:
The code imports necessary modules from the Hedera JavaScript SDK (
@hashgraph/sdk
), includingClient
,FileCreateTransaction
,ContractCreateTransaction
,PrivateKey
, andContractFunctionParameters
.It also imports the
dotenv
module to load environment variables from a.env
file located in theSmartContract_Service
directory.
2. Environment Variables Retrieval and Validation:
The script retrieves the account ID and private key 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:
This is the main function where the smart contract deployment process occurs.
It requires the compiled bytecode of the smart contract from the
eseal.sol
file, which is assumed to be located in theartifacts/contracts/eseal.sol
directory.The script creates a file on Hedera and stores the hex-encoded bytecode of the contract in it using a
FileCreateTransaction
.It retrieves the file ID from the transaction receipt and logs it.
Next, it instantiates the contract using a
ContractCreateTransaction
.Constructor parameters are provided using
setConstructorParameters
, in this case, a string parameter "Hello from Hedera!".The transaction to deploy the contract is executed on the Hedera network, and the resulting contract ID is retrieved from the transaction receipt and logged.
5. Execution:
This line calls the
main()
function to start the execution of the script.
Last updated
Was this helpful?