mirror of
https://github.com/vacp2p/rln-interep-contract.git
synced 2025-02-28 22:20:42 +00:00
30 lines
505 B
Markdown
30 lines
505 B
Markdown
# Hardhat Project for Rln-interep-contract
|
|
|
|
## Compilation
|
|
|
|
```shell
|
|
yarn compile
|
|
```
|
|
|
|
## Testing
|
|
```shell
|
|
yarn test
|
|
```
|
|
|
|
## Deploying
|
|
|
|
- To deploy on local node, first start the local node and then run the deploy script
|
|
|
|
```shell
|
|
yarn start
|
|
yarn deploy:localhost
|
|
```
|
|
|
|
- To deploy to an target network (like Goerli), use the name as mentioned in the Hardhat config file.
|
|
|
|
```shell
|
|
yarn deploy:goerli
|
|
```
|
|
## References
|
|
|
|
For more information, see https://hardhat.org/hardhat-runner/docs/guides/project-setup |