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.
Try running some of the following tasks:
yarn hardhat compile
yarn hardhat deploy
yarn test
yarn test:staging
yarn coverage
yarn hardhat node
yarn
yarn prettier
yarn prettier:fix
yarn solhint
yarn solhint:fixTo try out Etherscan verification, you first need to deploy a contract to an Ethereum network that's supported by Etherscan, such as Rinkeby.
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 Rinkeby node URL (eg from Alchemy), and the private key of the account which will send the deployment transaction. With a valid .env file in place, first deploy your contract:
yarn hardhat deploy --network rinkeby Distributed under the MIT License. See LICENSE.txt for more information.