docs: natspec, docgen
This commit is contained in:
parent
ca05aee912
commit
71ba5338cf
|
@ -1,4 +1,5 @@
|
|||
#!/usr/bin/env sh
|
||||
. "$(dirname -- "$0")/_/husky.sh"
|
||||
|
||||
yarn docgen && git add docs
|
||||
npx lint-staged
|
|
@ -5,6 +5,8 @@
|
|||
pragma solidity 0.8.15;
|
||||
|
||||
interface IPoseidonHasher {
|
||||
/// @notice Hashes the input using the Poseidon hash function, n = 2, second input is the constant 0
|
||||
/// @param input The input to hash
|
||||
function hash(uint256 input) external pure returns (uint256 result);
|
||||
}
|
||||
|
||||
|
|
|
@ -5,17 +5,34 @@ pragma solidity 0.8.15;
|
|||
import {IPoseidonHasher} from "./PoseidonHasher.sol";
|
||||
|
||||
contract RLN {
|
||||
/// @notice The deposit amount required to register as a member
|
||||
uint256 public immutable MEMBERSHIP_DEPOSIT;
|
||||
|
||||
/// @notice The depth of the merkle tree
|
||||
uint256 public immutable DEPTH;
|
||||
|
||||
/// @notice The size of the merkle tree, i.e 2^depth
|
||||
uint256 public immutable SET_SIZE;
|
||||
|
||||
/// @notice The index of the next member to be registered
|
||||
uint256 public idCommitmentIndex;
|
||||
|
||||
/// @notice The amount of eth staked by each member
|
||||
mapping(uint256 => uint256) public stakedAmounts;
|
||||
|
||||
/// @notice The membership status of each member
|
||||
mapping(uint256 => bool) public members;
|
||||
|
||||
/// @notice The Poseidon hasher contract
|
||||
IPoseidonHasher public poseidonHasher;
|
||||
|
||||
/// Emitted when a new member is added to the set
|
||||
/// @param idCommitment The idCommitment of the member
|
||||
/// @param index The index of the member in the set
|
||||
event MemberRegistered(uint256 idCommitment, uint256 index);
|
||||
|
||||
/// Emitted when a member is removed from the set
|
||||
/// @param idCommitment The idCommitment of the member
|
||||
event MemberWithdrawn(uint256 idCommitment);
|
||||
|
||||
constructor(
|
||||
|
@ -29,6 +46,8 @@ contract RLN {
|
|||
poseidonHasher = IPoseidonHasher(_poseidonHasher);
|
||||
}
|
||||
|
||||
/// Allows a user to register as a member
|
||||
/// @param idCommitment The idCommitment of the member
|
||||
function register(uint256 idCommitment) external payable {
|
||||
require(
|
||||
msg.value == MEMBERSHIP_DEPOSIT,
|
||||
|
@ -37,6 +56,8 @@ contract RLN {
|
|||
_register(idCommitment, msg.value);
|
||||
}
|
||||
|
||||
/// Allows batch registration of members
|
||||
/// @param idCommitments array of idCommitments
|
||||
function registerBatch(uint256[] calldata idCommitments) external payable {
|
||||
uint256 idCommitmentlen = idCommitments.length;
|
||||
require(idCommitmentlen > 0, "RLN, registerBatch: batch size zero");
|
||||
|
@ -53,6 +74,9 @@ contract RLN {
|
|||
}
|
||||
}
|
||||
|
||||
/// Registers a member
|
||||
/// @param idCommitment The idCommitment of the member
|
||||
/// @param stake The amount of eth staked by the member
|
||||
function _register(uint256 idCommitment, uint256 stake) internal {
|
||||
require(
|
||||
!members[idCommitment],
|
||||
|
@ -67,6 +91,9 @@ contract RLN {
|
|||
idCommitmentIndex += 1;
|
||||
}
|
||||
|
||||
/// Allows a user to slash a batch of members
|
||||
/// @param secrets array of idSecretHashes
|
||||
/// @param receivers array of addresses to receive the funds
|
||||
function withdrawBatch(
|
||||
uint256[] calldata secrets,
|
||||
address payable[] calldata receivers
|
||||
|
@ -82,10 +109,16 @@ contract RLN {
|
|||
}
|
||||
}
|
||||
|
||||
/// Allows a user to slash a member
|
||||
/// @param secret The idSecretHash of the member
|
||||
function withdraw(uint256 secret, address payable receiver) external {
|
||||
_withdraw(secret, receiver);
|
||||
}
|
||||
|
||||
/// Slashes a member by removing them from the set, and transferring their
|
||||
/// stake to the receiver
|
||||
/// @param secret The idSecretHash of the member
|
||||
/// @param receiver The address to receive the funds
|
||||
function _withdraw(uint256 secret, address payable receiver) internal {
|
||||
require(
|
||||
receiver != address(0),
|
||||
|
@ -120,6 +153,9 @@ contract RLN {
|
|||
emit MemberWithdrawn(idCommitment);
|
||||
}
|
||||
|
||||
/// Hashes a value using the Poseidon hasher
|
||||
/// NOTE: The variant of Poseidon we use accepts only 1 input, assume n=2, and the second input is 0
|
||||
/// @param input The value to hash
|
||||
function hash(uint256 input) internal view returns (uint256) {
|
||||
return poseidonHasher.hash(input);
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -9,6 +9,7 @@ import "@nomiclabs/hardhat-etherscan";
|
|||
import "@nomiclabs/hardhat-ethers";
|
||||
import "@nomiclabs/hardhat-waffle";
|
||||
import "hardhat-gas-reporter";
|
||||
import "solidity-docgen";
|
||||
|
||||
dotenv.config();
|
||||
const { SEPOLIA_URL, PRIVATE_KEY, ETHERSCAN_API_KEY } = process.env;
|
||||
|
|
|
@ -17,7 +17,8 @@
|
|||
"coverage": "forge coverage --report lcov",
|
||||
"fmt": "prettier --write \"**/*.{js,ts}\"",
|
||||
"lint": "prettier --check \"**/*.{js,ts}\"",
|
||||
"prepare": "husky install"
|
||||
"prepare": "husky install",
|
||||
"docgen": "hardhat docgen"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@nomicfoundation/hardhat-foundry": "^1.0.0",
|
||||
|
@ -36,7 +37,8 @@
|
|||
"husky": "^8.0.2",
|
||||
"lint-staged": "^13.0.3",
|
||||
"ts-node": "^10.8.1",
|
||||
"typescript": "^4.7.4"
|
||||
"typescript": "^4.7.4",
|
||||
"solidity-docgen": "0.6.0-beta.35"
|
||||
},
|
||||
"dependencies": {
|
||||
"dotenv": "^16.0.1"
|
||||
|
|
42
yarn.lock
42
yarn.lock
|
@ -4510,6 +4510,18 @@ growl@1.10.5:
|
|||
resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e"
|
||||
integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==
|
||||
|
||||
handlebars@^4.7.7:
|
||||
version "4.7.7"
|
||||
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1"
|
||||
integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==
|
||||
dependencies:
|
||||
minimist "^1.2.5"
|
||||
neo-async "^2.6.0"
|
||||
source-map "^0.6.1"
|
||||
wordwrap "^1.0.0"
|
||||
optionalDependencies:
|
||||
uglify-js "^3.1.4"
|
||||
|
||||
har-schema@^2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
|
||||
|
@ -6313,6 +6325,11 @@ negotiator@0.6.3:
|
|||
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
|
||||
integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
|
||||
|
||||
neo-async@^2.6.0:
|
||||
version "2.6.2"
|
||||
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
|
||||
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
|
||||
|
||||
next-tick@^1.1.0:
|
||||
version "1.1.0"
|
||||
resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb"
|
||||
|
@ -7739,6 +7756,19 @@ solc@^0.6.3:
|
|||
semver "^5.5.0"
|
||||
tmp "0.0.33"
|
||||
|
||||
solidity-ast@^0.4.38:
|
||||
version "0.4.46"
|
||||
resolved "https://registry.yarnpkg.com/solidity-ast/-/solidity-ast-0.4.46.tgz#d0745172dced937741d07464043564e35b147c59"
|
||||
integrity sha512-MlPZQfPhjWXqh7YxWcBGDXaPZIfMYCOHYoLEhGDWulNwEPIQQZuB7mA9eP17CU0jY/bGR4avCEUVVpvHtT2gbA==
|
||||
|
||||
solidity-docgen@0.6.0-beta.35:
|
||||
version "0.6.0-beta.35"
|
||||
resolved "https://registry.yarnpkg.com/solidity-docgen/-/solidity-docgen-0.6.0-beta.35.tgz#174d7fe54efa8b10f7d3cbe0dfc40e52e11bf867"
|
||||
integrity sha512-9QdwK1THk/MWIdq1PEW/6dvtND0pUqpFTsbKwwU9YQIMYuRhH1lek9SsgnsGGYtdJ0VTrXXcVT30q20a8Y610A==
|
||||
dependencies:
|
||||
handlebars "^4.7.7"
|
||||
solidity-ast "^0.4.38"
|
||||
|
||||
source-map-resolve@^0.5.0:
|
||||
version "0.5.3"
|
||||
resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
|
||||
|
@ -7783,7 +7813,7 @@ source-map@^0.5.6, source-map@^0.5.7:
|
|||
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
|
||||
integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
|
||||
|
||||
source-map@^0.6.0:
|
||||
source-map@^0.6.0, source-map@^0.6.1:
|
||||
version "0.6.1"
|
||||
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
|
||||
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
|
||||
|
@ -8461,6 +8491,11 @@ typical@^2.6.0, typical@^2.6.1:
|
|||
resolved "https://registry.yarnpkg.com/typical/-/typical-2.6.1.tgz#5c080e5d661cbbe38259d2e70a3c7253e873881d"
|
||||
integrity sha512-ofhi8kjIje6npGozTip9Fr8iecmYfEbS06i0JnIg+rh51KakryWF4+jX8lLKZVhy6N+ID45WYSFCxPOdTWCzNg==
|
||||
|
||||
uglify-js@^3.1.4:
|
||||
version "3.17.4"
|
||||
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c"
|
||||
integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==
|
||||
|
||||
ultron@~1.1.0:
|
||||
version "1.1.1"
|
||||
resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c"
|
||||
|
@ -9027,6 +9062,11 @@ window-size@^0.2.0:
|
|||
resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.2.0.tgz#b4315bb4214a3d7058ebeee892e13fa24d98b075"
|
||||
integrity sha512-UD7d8HFA2+PZsbKyaOCEy8gMh1oDtHgJh1LfgjQ4zVXmYjAT/kvz3PueITKuqDiIXQe7yzpPnxX3lNc+AhQMyw==
|
||||
|
||||
wordwrap@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
|
||||
integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==
|
||||
|
||||
workerpool@6.2.1:
|
||||
version "6.2.1"
|
||||
resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.1.tgz#46fc150c17d826b86a008e5a4508656777e9c343"
|
||||
|
|
Loading…
Reference in New Issue