https://github.com/kazuma512/hardhat-tutorial
Hardhat is a development environment to compile, deploy, test, and debug your Ethereum software.
https://github.com/kazuma512/hardhat-tutorial
chai hardhat javascript kazuma512 smart-contracts solidity
Last synced: about 1 month ago
JSON representation
Hardhat is a development environment to compile, deploy, test, and debug your Ethereum software.
- Host: GitHub
- URL: https://github.com/kazuma512/hardhat-tutorial
- Owner: kazuma512
- Created: 2024-04-12T16:06:58.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-12T21:34:32.000Z (about 1 year ago)
- Last Synced: 2025-04-13T07:59:48.168Z (about 1 month ago)
- Topics: chai, hardhat, javascript, kazuma512, smart-contracts, solidity
- Language: JavaScript
- Homepage:
- Size: 67.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hardhat Tutorial
Hardhat is a development environment to compile, deploy, test, and debug your Ethereum software.
## Installation
To install the project and its dependencies, run the following command:
```bash
npm install
```## Usage
### Compile the Project
To compile the project, run the following command:
```bash
npx hardhat compile
```### Deploy the Project
To deploy the project, use the following command:
```bash
npx hardhat run scripts/deploy.js
```### Verify the Project
To verify the project, use the following command:
```bash
npx hardhat verify --network
```Replace `` with the actual name of the network you want to verify the project on.
## Configuration
No specific configuration is required for this project.
## Testing
To run tests for the project, use the following command:
```bash
npx hardhat test
```## License
This project is licensed under the [MIT License](link_to_license).