An open API service indexing awesome lists of open source software.

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.

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).