Deploying a Contract Using Hardhat
Hardhat is a development framework for Ethereum software, providing various tools for smart contract development, compilation, debugging, and deployment. Since dKargo is compatible with Ethereum's EVM, smart contracts can be deployed on the dKargo network.
This guide will walk through the process of building a Wallet dApp using Hardhat and dKargo Warehouse.
Development Environment
Prerequisites
Node.js & npm/yarn:
Installed from Node.js.
Hardhat: Development environment for Ethereum.
Install with:
Step 1 - Set Up a Hardhat Project
Initialize a new Hardhat project
Install dotenv for managing environment variables.
Below is an example of the Hardhat project folder structure:
Step 2 - Writing the Counter.sol
Contract
Counter.sol
ContractCreate a new file named
Counter.sol
inside thecontracts
folder.Copy and paste the following code into the file.
The following contract implements a simple function to set the number
variable.
Step 3 - Updating the ignition file
Create a new file named
Counter.js
inside the./ignition/modules
folder.Copy and paste the following code into the file.
This script follows the Hardhat Ignition standard and is responsible for deploying the contract.
Step 4 - Configuring Hardhat for dKargo Chain
Add the necessary plugins and configurations to
hardhat.config.js
.
require('dotenv').config() :
Loads environment variables from the.env
file.accounts: [process.env.PRIVATE_KEY] :
Passes the private key stored in the.env
file.
Add the following code to the file, and ensure that
.env
is included in thegitignore
file to prevent exposing sensitive information.
Step 5 - Compile and Deploy
Compile
counter.sol
.
Deploy the
counter.sol
contract to the Warehouse testnet:
Step 6 - Viewing the Deployment Transaction
Check the transaction details of the deployed contract.
Search for the transaction information on dScanner
Verify Contract
In Ethereum and other EVM-based blockchains, smart contracts are often verified using Hardhat's verify
function.
However, dKargo Chain utilizes dScanner, a block explorer optimized for logistics services, which is not compatible with Hardhat’s verify
function.
To ensure transparency of deployed contracts, the Verify Contract feature provided by dScanner can be used instead.
Last updated