Hardhat
Smart contract development using Hardhat
Hardhat config
Add chain config in
networks
section inhardhat.config.js
file:
Add customChain config for contracts verification in
etherscan
section ofhardhat.config.js
file:
Compile contracts
Compile smart contracts using hardhat commands as usual:
Deploy contracts
Deploy compiled smart contracts using deployment scripts as usual:
Verify contracts
Verify deployed smart contracts usingverify
command as usual:
After verification, the verified contracts can be displayed and interacted with on Explorer site.
Last updated