Waku's Fork of the RLN contract
Go to file
Tanya S 1f9661038d
Merge pull request #13 from waku-org/deploy-local-with-provided-url
Add option to provide the RPC URL for a localhost network deployment
2024-03-25 13:45:20 +02:00
.github/workflows fix: workaround assumePayable 2023-03-29 17:51:48 +05:30
.husky docs: natspec, docgen 2023-03-30 12:24:58 +05:30
.vscode forge install: rln-contract 2023-07-31 11:42:07 +05:30
contracts feat(WakuRlnRegistry): uups proxy (#9) 2023-09-11 09:31:16 +05:30
deploy feat(WakuRlnRegistry): uups proxy (#9) 2023-09-11 09:31:16 +05:30
deployments feat(WakuRlnRegistry): uups proxy (#9) 2023-09-11 09:31:16 +05:30
docs feat(WakuRlnRegistry): uups proxy (#9) 2023-09-11 09:31:16 +05:30
lib feat(WakuRlnRegistry): uups proxy (#9) 2023-09-11 09:31:16 +05:30
test feat(WakuRlnRegistry): uups proxy (#9) 2023-09-11 09:31:16 +05:30
.env.example add option to provide the RPC URL for a localhost network deployment 2024-03-20 12:57:58 +02:00
.eslintignore Initializing Repository 2022-06-23 15:36:10 +02:00
.eslintrc.js Initializing Repository 2022-06-23 15:36:10 +02:00
.gitignore fix: use foundry reporter instead 2023-03-29 14:17:51 +05:30
.gitmodules feat(WakuRlnRegistry): uups proxy (#9) 2023-09-11 09:31:16 +05:30
.npmignore Initializing Repository 2022-06-23 15:36:10 +02:00
.prettierignore Initializing Repository 2022-06-23 15:36:10 +02:00
.prettierrc Initializing Repository 2022-06-23 15:36:10 +02:00
.solcover.js feat: integrate plugins from rln-interep-contract 2023-03-29 11:58:09 +05:30
.solhint.json Initializing Repository 2022-06-23 15:36:10 +02:00
.solhintignore Initializing Repository 2022-06-23 15:36:10 +02:00
LICENSE-APACHE feat: integrate plugins from rln-interep-contract 2023-03-29 11:58:09 +05:30
LICENSE-MIT feat: integrate plugins from rln-interep-contract 2023-03-29 11:58:09 +05:30
README.md updated README with version requirements and additional compile step 2024-03-08 09:37:45 +02:00
foundry.toml chore: update dependency 2023-08-23 08:58:38 +05:30
hardhat.config.ts deploy localhost uses provided RPC URL or default 2024-03-20 15:12:40 +02:00
package.json feat(WakuRlnRegistry): uups proxy (#9) 2023-09-11 09:31:16 +05:30
remappings.txt feat(WakuRlnRegistry): uups proxy (#9) 2023-09-11 09:31:16 +05:30
tsconfig.json feat: integrate plugins from rln-interep-contract 2023-03-29 11:58:09 +05:30
yarn.lock docs: natspec, docgen 2023-03-30 12:24:58 +05:30

README.md

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
    • You'll know you've done it right if you can run git --version
  • Foundry / Foundryup
    • 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]
  • [Nodejs]
    • Hardhat compatibility requires Nodejs < v18.19.1

Compilation

forge install
yarn compile

Testing with Hardhat

yarn test:hardhat

Testing with Foundry

yarn test:foundry

Deploying

Locally

  • To deploy on a local node, first start the local node and then run the deploy script
yarn node
yarn deploy:localhost

Sepolia

  • To deploy to an target network (like Sepolia), use the name as mentioned in the Hardhat config file.
yarn deploy:sepolia
# You may verify the contract using
yarn verify:sepolia # Ensure you have set ETHERSCAN_API_KEY in your env

References

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 or LICENSE-APACHE for more information.