This project demonstrates an advanced Hardhat use case, integrating other tools commonly used alongside Hardhat in the ecosystem.
The project comes with a sample contract, a test for that contract, a sample script that deploys that contract, and an example of a task implementation, which simply lists the available accounts. It also comes with a variety of other tools, preconfigured to work with the project code.
This project also includes Foundry for advanced testing like fuzzing.
On the project root, run:
$ npm i # install dependencies
$ npm run compile # compile contracts and generate typechain
$ npm test # run tests
Install Hardhat Deploy:
$ npm add --save-dev hardhat-deploy
$ npm add --save-dev @nomiclabs/hardhat-ethers@npm:hardhat-deploy-ethers ethers
Add to hardhat.config.js:
require('hardhat-deploy');
optional:
$ npm run coverage # run test coverage tool
To run foundry tests:
$ forge build # compile contracts
$ forge test # run foundry tests
To try out Etherscan verification, you first need to deploy a contract to an Ethereum network that's supported by Etherscan, such as Goerli.
In this project, copy the .env.example file to a file named .env, and then edit it to fill in the details. Enter your Etherscan API key, your Infura API key, and the mnemonic phrase of the account which will send the deployment transaction. With a valid .env file in place, first deploy your contract:
npx hardhat run scripts/deploy.ts --network goerli
Then, copy the deployment address and paste it in to replace DEPLOYED_CONTRACT_ADDRESS
in this command:
npx hardhat verify --network goerli DEPLOYED_CONTRACT_ADDRESS "Hello, Hardhat!"
For faster runs of your tests and scripts, consider skipping ts-node's type checking by setting the environment variable TS_NODE_TRANSPILE_ONLY
to 1
in hardhat's environment. For more details see the documentation.