2023-03-29 06:28:09 +00:00
|
|
|
# Hardhat Project for rln-contract
|
|
|
|
|
|
|
|
## Requirements
|
|
|
|
|
|
|
|
The following will need to be installed in order to use this repo. Please follow the links and instructions.
|
|
|
|
|
|
|
|
- [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
|
|
|
|
- You'll know you've done it right if you can run `git --version`
|
|
|
|
- [Foundry / Foundryup](https://github.com/gakonst/foundry)
|
|
|
|
- This will install `forge`, `cast`, and `anvil`
|
|
|
|
- You can test you've installed them right by running `forge --version` and get an output like: `forge 0.2.0 (92f8951 2022-08-06T00:09:32.96582Z)`
|
|
|
|
- To get the latest of each, just run `foundryup`
|
|
|
|
- [Yarn](https://classic.yarnpkg.com/lang/en/docs/install)
|
2022-11-26 00:47:35 +00:00
|
|
|
|
2022-06-23 13:36:10 +00:00
|
|
|
|
2022-09-25 21:49:21 +00:00
|
|
|
## Compilation
|
2022-06-23 13:36:10 +00:00
|
|
|
|
|
|
|
```shell
|
2023-03-29 06:28:09 +00:00
|
|
|
yarn compile
|
|
|
|
```
|
|
|
|
|
|
|
|
## Testing with Hardhat
|
|
|
|
```shell
|
|
|
|
yarn test:hardhat
|
2022-06-23 13:36:10 +00:00
|
|
|
```
|
|
|
|
|
2023-03-29 06:28:09 +00:00
|
|
|
## Testing with Foundry
|
2022-09-25 21:49:21 +00:00
|
|
|
```shell
|
2023-03-29 06:28:09 +00:00
|
|
|
yarn test:foundry
|
2022-09-25 21:49:21 +00:00
|
|
|
```
|
2022-06-23 13:36:10 +00:00
|
|
|
|
2022-09-25 21:49:21 +00:00
|
|
|
## Deploying
|
2022-06-23 13:36:10 +00:00
|
|
|
|
2022-09-25 21:49:21 +00:00
|
|
|
- To deploy on local node, first start the local node and then run the deploy script
|
2022-06-23 13:36:10 +00:00
|
|
|
|
|
|
|
```shell
|
2023-03-29 06:28:09 +00:00
|
|
|
yarn node
|
|
|
|
npx deploy:localhost
|
2022-06-23 13:36:10 +00:00
|
|
|
```
|
|
|
|
|
2023-03-29 06:28:09 +00:00
|
|
|
- To deploy to an target network (like Sepolia), use the name as mentioned in the Hardhat config file.
|
2022-06-23 13:36:10 +00:00
|
|
|
|
|
|
|
```shell
|
2023-03-29 06:28:09 +00:00
|
|
|
yarn deploy:sepolia
|
2022-06-23 13:36:10 +00:00
|
|
|
```
|
2022-09-25 21:49:21 +00:00
|
|
|
## References
|
2022-06-23 13:36:10 +00:00
|
|
|
|
2023-03-29 06:28:09 +00:00
|
|
|
For more information, see https://hardhat.org/hardhat-runner/docs/guides/project-setup
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
Dual-licensed under MIT or Apache 2.0, refer to [LICENSE-MIT](LICENSE-MIT) or [LICENSE-APACHE](LICENSE-APACHE) for more information.
|