RLN contract
Go to file
r4bbit b0e78f260d
chore: remove API and private keys from .env file (#23)
Few things:

1. I don't think we want to expose any etherscan API keys we use. We also
   don't want to expose any private keys.
2. Not sure where this private key comes from, likely a ganache/anvil
   generated account, but nonetheless, I think the `.env.example` file
   is meant to be copied to `.env` and then changes are done there.
2023-08-08 20:50:07 +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
contracts fix: make all functions virtual 2023-07-31 10:49:29 +05:30
deploy chore: convert rln to rlnbase, and inherit into rln 2023-07-26 16:40:55 +05:30
deployments chore: updated deployments 2023-05-31 13:07:48 +05:30
docs fix: make all functions virtual 2023-07-31 10:49:29 +05:30
lib fix: make tests compile with forge-std@1.6.0 2023-08-08 20:45:12 +02:00
test fix: make tests compile with forge-std@1.6.0 2023-08-08 20:45:12 +02:00
.env.example chore: remove API and private keys from .env file (#23) 2023-08-08 20:50:07 +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 fix: make tests compile with forge-std@1.6.0 2023-08-08 20:45:12 +02:00
.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 feat: sepolia deployment 2023-03-30 18:29:06 +05:30
foundry.toml feat: foundry integration 2023-03-29 12:28:42 +05:30
hardhat.config.ts chore: create verifier and integrate 2023-05-26 13:31:05 +05:30
package.json docs: natspec, docgen 2023-03-30 12:24:58 +05:30
remappings.txt chore: remappings 2023-07-27 11:46:55 +05:30
slither.config.json fix: test file name 2023-07-27 10:38:21 +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

Compilation

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.