Hardhat is a development environment to compile, deploy, test, and debug your Ethereum software.
To install the project and its dependencies, run the following command:
npm install
To compile the project, run the following command:
npx hardhat compile
To deploy the project, use the following command:
npx hardhat run scripts/deploy.js
To verify the project, use the following command:
npx hardhat verify --network <network_name>
Replace <network_name>
with the actual name of the network you want to verify the project on.
No specific configuration is required for this project.
To run tests for the project, use the following command:
npx hardhat test
This project is licensed under the MIT License.