Deploy a Smart Contract Using Hardhat and Hedera JSON-RPC Relay
A step-by-step guide on deploying a smart contract to Hedera testnet and Hedera Local Node using Hardhat.
In this tutorial, you will walk through the step-by-step guide on deploying smart contracts using Hardhat and Hedera JSON-RPC Relay. Hardhatis a development environment for Ethereum. It consists of different components for editing, compiling, debugging, and deploying smart contracts and dApps, all working together to create a complete development environment.
The Hedera JSON-RPC Relay is an implementation of Ethereum JSON-RPC APIs for Hedera and utilizes both Hedera Consensus Nodes and Mirror Nodes to support RPC queries defined in the JSON-RPC Specification. The Hedera Local Node project enables developers to establish their own local network for development and testing. The local network comprises the consensus node, mirror node, JSON-RPC relay, and other Hedera products, and can be set up using the CLI tool and Docker. This setup allows you to seamlessly build and deploy smart contracts from your local environment.
By the end of this tutorial, you'll be equipped to deploy smart contracts on the Hedera Testnet or your local Hedera node, leveraging Hardhat's tools for testing, compiling, and deploying.
To simplify the setup process, you can clone a boilerplate Hardhat example project from the hedera-hardhat-example-projectrepository. Open a terminal window and navigate to your preferred directory where your Hardhat project will be stored.
Run the following command to clone the repo, change into the directory, and install dependencies:
Let's review the Hardhat project folders/content. For more information regarding Hardhat projects, check out the Hardhat docs. If you do not need to review the project contents, you can skip this optional step.
contracts/
The contracts/ folder contains the source file for the Greeter smart contract.
Let's review the Greeter.sol contract in the hedera-example-hardhat-project/contracts folder. At the top of the file, the SPDX-License-Identifier defines the license, in this case, the MIT license. The pragma solidity ^0.8.9; line specifies the Solidity compiler version to use. These two lines are crucial for proper licensing and compatibility.
Greeter.sol
//SPDX-License-Identifier: MITpragmasolidity ^0.8.9;contract Greeter {stringprivate greeting;eventGreetingSet(string greeting);//This constructor assigns the initial greeting and emit GreetingSet eventconstructor(stringmemory_greeting) { greeting = _greeting;emitGreetingSet(_greeting); }//This function returns the current value stored in the greeting variablefunctiongreet() publicviewreturns (stringmemory) {return greeting; }//This function sets the new greeting msg from the one passed down as parameter and emit eventfunctionsetGreeting(stringmemory_greeting) public { greeting = _greeting;emitGreetingSet(_greeting); }}
NOTE: The pragma solidity line must match the version of Solidity defined in themodule exportsof your hardhat.config.js file.
scripts/
The scripts/ folder contains test scripts for locally testing a smart contract before deploying it. Please read the comments to help you understand the code and its purpose.
contractCall.js
Calls the setGreeting function from the Greeter contract and sets the greeter message to "Greeter."
contractCall.js
const { ethers } =require('hardhat');//This function accepts two parameters - address and msg//Retrieves the contract from the address and set new greetingmodule.exports=async (address, msg) => { //Assign the first signer, which comes from the first privateKey from our configuration in hardhat.config.js, to a wallet variable.
constwallet= (awaitethers.getSigners())[0]; //Assign the greeter contract object in a variable, this is used for already deployed contract, which we have the address for. ethers.getContractAt accepts:
//name of contract as first parameter//address of our contract//wallet/signer used for signing the contract calls/transactions with this contract constgreeter=awaitethers.getContractAt('Greeter', address, wallet); //using the greeter object(which is our contract) we can call functions from the contract. In this case we call setGreeting with our new msg
constupdateTx=awaitgreeter.setGreeting(msg);console.log(`Updated call result: ${msg}`);return updateTx;};
contractViewCall.js
Returns the current greeter message value stored with the Greeter contract.
contractViewCall.js
const { ethers } =require("hardhat");module.exports=async (address) => { //Assign the first signer, which comes from the first privateKey from our configuration in hardhat.config.js, to a wallet variable.
constwallet= (awaitethers.getSigners())[0]; //Assign the greeter contract object in a variable, this is used for already deployed contract, which we have the address for. ethers.getContractAt accepts:
//name of contract as first parameter//address of our contract//wallet/signer used for signing the contract calls/transactions with this contractconstgreeter=awaithre.ethers.getContractAt("Greeter", address, wallet); //using the greeter object(which is our contract) we can call functions from the contract. In this case we call greet which returns our greeting msg
constcallRes=awaitgreeter.greet();console.log(`Contract call result: ${callRes}`);return callRes;};
deployContract.js
Deploys the Greeter contract and returns the contract public address.
const { ethers } =require("hardhat");module.exports=async () => { //Assign the first signer, which comes from the first privateKey from our configuration in hardhat.config.js, to a wallet variable.
let wallet = (awaitethers.getSigners())[0];//Initialize a contract factory object//name of contract as first parameter//wallet/signer used for signing the contract calls/transactions with this contractconstGreeter=awaitethers.getContractFactory("Greeter", wallet); //Using already intilized contract facotry object with our contract, we can invoke deploy function to deploy the contract.
//Accepts constructor parameters from our contractconstgreeter=awaitGreeter.deploy("initial_msg");//We use wait to recieve the transaction (deployment) receipt, which contains contractAddressconstcontractAddress= (awaitgreeter.deployTransaction.wait()) .contractAddress;console.log(`Greeter deployed to: ${contractAddress}`);return contractAddress;};
showBalance.js
Returns the balance of the specified wallet address (account) in tinybars. Tinybars are the unit in which Hedera accounts hold HBAR balances.
showBalance.js
const { ethers } =require("hardhat");module.exports=async () => { //Assign the first signer, which comes from the first privateKey from our configuration in hardhat.config.js, to a wallet variable.
constwallet= (awaitethers.getSigners())[0]; //Wallet object (which is essentially signer object) has some built in functionality like getBalance, getAddress and more
constbalance= (awaitwallet.getBalance()).toString();console.log(`The address ${wallet.address} has ${balance} weibars`);return balance;};
test/
The test/ folder contains the test files for the project.
The rpc.js file is located in this folder in the hedera-example-hardhat-project project and references the Hardhat tasks that are defined in the hardhat.config file. When the command npx hardhat test is run, the program executes the rpc.js file.
rpc.js
consthre=require("hardhat");const { expect } =require("chai");describe("RPC",function () {let contractAddress;let signers;before(asyncfunction () { signers =awaithre.ethers.getSigners(); });it("should be able to get the account balance",asyncfunction () {constbalance=awaithre.run("show-balance");expect(Number(balance)).to.be.greaterThan(0); });it("should be able to deploy a contract",asyncfunction () { contractAddress =awaithre.run("deploy-contract");expect(contractAddress).to.not.be.null; });it("should be able to make a contract view call",asyncfunction () {constres=awaithre.run("contract-view-call", { contractAddress });expect(res).to.be.equal("initial_msg"); });it("should be able to make a contract call",asyncfunction () {constmsg="updated_msg";awaithre.run("contract-call", { contractAddress, msg });constres=awaithre.run("contract-view-call", { contractAddress });expect(res).to.be.equal(msg); });});
.env.example
A file that stores your environment variables like your accounts, private keys, and references to Hedera network. Details of this file are available in Step 2 of this tutorial.
hardhat.config.js
The Hardhat configuration file. This file includes information about the Hedera network RPC URLs, accounts, and tasks defined. Details of this file are available in Step 2 of this tutorial.
Step 2: Configure Project
In this step, you will update and configure your environment variables and Hardhat configuration files. These files play a crucial role in defining tasks, securely storing account private keys, and specifying RPC endpoint URLs required for network interactions.
Environment Variables
The .env file securely stores environment variables, such as your Hedera network endpoints and private keys, which are then imported into the hardhat.config.js file. This helps protect sensitive information like your private keys and API secrets, but it's still best practice to add .env to .gitignore file to prevent you from committing and pushing your credentials to GitHub. Go to the tab corresponding to your deployment path and follow the steps to set up your environment variables.
Rename the .env.example File
Start by renaming the provided .env.example file to .env.
Review the .env File
Open the .env file to modify with your private keys and understand its contents.
Prerequisite: A Hedera Local Node set up and running (setup tutorial).
Hedera Local Node environment variables
The variables are predefined for the purposes of this tutorial.
.env
# Your Hedera Local Node ECDSA account alias private keyLOCAL_NODE_OPERATOR_PRIVATE_KEY=0x105d050185ccb907fba04dd92d8de9e32c18305e097ab41dadda21489a211524# Your Hedera Local Node JSON-RPC endpoint URLLOCAL_NODE_ENDPOINT='http://localhost:7546/'
Variables explained
LOCAL_NODE_OPERATOR_PRIVATE_KEY: This is your Alias ECDSA hex-encoded private key for your Hedera Local Node. Replace the example value with your actual private key. Once you set up your local node and run the command to start, the accounts list for alias ECDSA private keys will be generated and returned to your console (see screenshot below). Replace the example value with your actual private key.
LOCAL_NODE_ENDPOINT: This is the URL endpoint for your Hedera Local Node's JSON-RPC Relay. Typically, this would be your localhost followed by the port number (http://localhost:7546/).
# Your testnet account ECDSA hex-encoded private key from the portalTESTNET_OPERATOR_PRIVATE_KEY=0xb46751179bc8aa9e129d34463e46cd924055112eb30b31637b5081b56ad96129# Your testnet JSON-RPC Relay endpoint URLTESTNET_ENDPOINT='https://testnet.hashio.io/api'
Variables explained
TESTNET_OPERATOR_PRIVATE_KEY: This is your ECDSA hex-encoded private key for the Hedera Testnet. Replace the example value with your actual private key.
TESTNET_ENDPOINT: This is the URL endpoint for the Hedera Testnet's JSON-RPC Relay. Replace the example URL with the one you're using.
For this tutorial, we'll use Hashio, an instance of the Hedera JSON-RPC relay hosted by Swirlds Labs. You can use any JSON-RPC instance the community supports.
Configuring these environment variables enables your Hardhat project to interact with the Hedera network or your local node. Let's review the Hardhat configuration file, where these environment variables are loaded into.
Hardhat Configuration File
The Hardhat config (hardhat.config.js) file serves as the central configuration file for your Hardhat project. This file is crucial for specifying various settings, including Hardhat tasks, network configurations, compiler options, and testing settings. Let’s review the configuration settings.
Required Packages and Mocha Settings
These first lines import the required Hardhat plugins and the dotenv module that loads environment variables from the .env file. This will allow you to keep your private keys secure while using them in your dApp and will keep you from committing these to GitHub.
hardhat.config.js
require("@nomicfoundation/hardhat-toolbox");require("@nomicfoundation/hardhat-chai-matchers");require("@nomiclabs/hardhat-ethers");require("dotenv").config(); // Import dotenv library to access the .env file
Hardhat Tasks
These lines define tasks that are accessed and executed from the test/ or scripts/ folders.
hardhat.config.js
//define hardhat task here, which can be accessed in our test file (test/rpc.js) by using hre.run('taskName')task("show-balance",async () => {constshowBalance=require("./scripts/showBalance");returnshowBalance();});task("deploy-contract",async () => {constdeployContract=require("./scripts/deployContract");returndeployContract();});task("contract-view-call",async (taskArgs) => {constcontractViewCall=require("./scripts/contractViewCall");returncontractViewCall(taskArgs.contractAddress);});task("contract-call",async (taskArgs) => {constcontractCall=require("./scripts/contractCall");returncontractCall(taskArgs.contractAddress,taskArgs.msg);});
Solidity Compiler Settings
Here, the Solidity compiler version is set to "0.8.9". The optimizer is enabled with 500 runs to improve the contract's efficiency.
The networks object is essential for defining the Hedera networks your Hardhat project will connect to. Additionally, the defaultNetwork key specifies the network Hardhat will default to if none is specified at deployment.
.env
// Specifies which network configuration will be used by default when you run Hardhat commands. defaultNetwork:"local", networks: {// Defines the configuration settings for connecting to Hedera local node local: {// Specifies URL endpoint for Hedera local node pulled from the .env file url:process.env.LOCAL_NODE_ENDPOINT,// Your local node operator private key pulled from the .env file accounts: [process.env.LOCAL_NODE_OPERATOR_PRIVATE_KEY], }, },
.env
// Specifies which network configuration will be used by default when you run Hardhat commands. defaultNetwork:"testnet", networks: {// Defines the configuration settings for connecting to Hedera testnet testnet: {// Specifies URL endpoint for Hedera testnet pulled from the .env file url:process.env.TESTNET_ENDPOINT,// Your ECDSA testnet account private key pulled from the .env file accounts: [process.env.TESTNET_OPERATOR_PRIVATE_KEY], }, },
Key/value breakdown:
defaultNetwork: This property specifies which network configuration will be used by default when you run Hardhat commands.
networks: This property contains configurations for different networks you might connect to.
url: This specifies the URL endpoint for the network. The value is pulled from the .env file where the environment variables are defined.
accounts: This lists the private keys for the accounts you'll use when connecting to the network. The value is pulled from the .env file where the environment variables are defined.
Step 3: Compile Contract
Now that your project is configured compile your contract. Run the following command in the hedera-hardhat-example-project terminal:
npxhardhatcompile
Console check ✅
Compiling...Compiled1contractsuccessfully
The compiled artifacts will be saved in the artifacts/ directory by default, or whatever your configured artifacts path is. The metadata file generated in this directory will be used for the smart contract verification process in a later step.
After the initial compilation, if you don't modify any files, nothing will be compiled when you run the compile command. To force a compilation you can use the --force flag or run npx hardhat clean to clear the cache and delete the artifacts to recompile.
Step 4: Test and Deploy Contract
Once your contract is compiled successfully, deploy the Greeter.sol smart contract. There are additional steps required if you're deploying to your local node:
🛠️ local node additional steps
Before you deploy your contract, let's ensure you have all the necessary tools open and running to avoid any issues.
Have two terminals open. One for each of these two project directories:
hedera-local-node
hedera-hardhat-example-project
Have Docker open and start your local node.
In the hedera-local-node terminal, start your local node by running hedera start -d.
Note: If you have not set up your Hedera Local Node, you can do so by following this tutorial and returning to this step once you complete the setup.
Test
Test your contract before deploying it. In the hedera-hardhat-example-project terminal, run the following command to compile and test your contract:
npxhardhattest
Tests should pass with "4 passing" returned to the console. Otherwise, an error message will appear indicating the issue.
Stop your local node and remove Docker containers by running hedera stop or docker compose down in your hedera-local-node terminal. Reference the Stop Your Local Node section of the local node setup tutorial.
Deploy on Hedera Testnet
If you're up for it, follow the steps to deploy on the Hedera testnet and verify your contract.
View Contract on HashScan Network Explorer
You can view the contract you deployed by searching the smart contract public address in a supported Hedera Network Explorer. For this example, we will use the HashScan Network Explorer. Copy and paste your deployed Greeter.sol public contract address into the HashScan search bar.
The Network Explorer will return the information about the contract created and deployed to the Hedera Testnet. The "EVM Address" field is the public address of the contract that was returned to you in your terminal. The terminal returned the public address with the "0x" hex encoding appended to the public address. You will also notice a contract ID in 0.0.contractNumber (0.0.3478001) format. This is the contract ID used to reference the contract entity in the Hedera Network.
Verify Contract
Additionally, you can verify your contract using the HashScan verification feature (beta). Follow these steps to learn how.
Note: At the top of the explorer page, remember to switch the network to TESTNET before you search for the contract.
Congratulations! 🎉 You have successfully learned how to deploy a smart contract using Hardhat and Hedera JSON-RPC Relay. Feel free to reach out in Discord!