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 installTo compile the project, run the following command:
npx hardhat compileTo deploy the project, use the following command:
npx hardhat run scripts/deploy.jsTo 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 testThis project is licensed under the MIT License.