2023-03-29 06:58:42 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2023-03-29 06:28:09 +00:00
|
|
|
|
2022-08-09 17:29:04 +00:00
|
|
|
pragma solidity 0.8.15;
|
2022-06-23 13:36:10 +00:00
|
|
|
|
2023-03-29 06:28:09 +00:00
|
|
|
import {IPoseidonHasher} from "./PoseidonHasher.sol";
|
2022-06-23 13:36:10 +00:00
|
|
|
|
2023-05-23 06:54:58 +00:00
|
|
|
/// The tree is full
|
|
|
|
error FullTree();
|
|
|
|
|
2023-03-30 12:00:54 +00:00
|
|
|
/// Invalid deposit amount
|
|
|
|
/// @param required The required deposit amount
|
|
|
|
/// @param provided The provided deposit amount
|
|
|
|
error InsufficientDeposit(uint256 required, uint256 provided);
|
|
|
|
|
|
|
|
/// Member is already registered
|
|
|
|
error DuplicateIdCommitment();
|
|
|
|
|
2023-03-30 14:53:08 +00:00
|
|
|
/// Invalid receiver address, when the receiver is the contract itself or 0x0
|
|
|
|
error InvalidReceiverAddress(address to);
|
2023-03-30 12:00:54 +00:00
|
|
|
|
|
|
|
/// Member is not registered
|
|
|
|
error MemberNotRegistered(uint256 idCommitment);
|
|
|
|
|
|
|
|
/// Member has no stake
|
|
|
|
error MemberHasNoStake(uint256 idCommitment);
|
|
|
|
|
2023-03-30 14:53:08 +00:00
|
|
|
/// User has insufficient balance to withdraw
|
|
|
|
error InsufficientWithdrawalBalance();
|
|
|
|
|
|
|
|
/// Contract has insufficient balance to return
|
|
|
|
error InsufficientContractBalance();
|
|
|
|
|
2022-06-23 13:36:10 +00:00
|
|
|
contract RLN {
|
2023-03-30 06:51:48 +00:00
|
|
|
/// @notice The deposit amount required to register as a member
|
2023-03-29 06:28:09 +00:00
|
|
|
uint256 public immutable MEMBERSHIP_DEPOSIT;
|
2023-03-30 06:51:48 +00:00
|
|
|
|
|
|
|
/// @notice The depth of the merkle tree
|
2023-03-29 06:28:09 +00:00
|
|
|
uint256 public immutable DEPTH;
|
2023-03-30 06:51:48 +00:00
|
|
|
|
|
|
|
/// @notice The size of the merkle tree, i.e 2^depth
|
2023-03-29 06:28:09 +00:00
|
|
|
uint256 public immutable SET_SIZE;
|
|
|
|
|
2023-03-30 06:51:48 +00:00
|
|
|
/// @notice The index of the next member to be registered
|
2023-05-23 06:54:58 +00:00
|
|
|
uint256 public idCommitmentIndex = 1;
|
2023-03-30 06:51:48 +00:00
|
|
|
|
|
|
|
/// @notice The amount of eth staked by each member
|
2023-05-23 06:54:58 +00:00
|
|
|
/// maps from idCommitment to the amount staked
|
2023-03-29 06:28:09 +00:00
|
|
|
mapping(uint256 => uint256) public stakedAmounts;
|
2023-03-30 06:51:48 +00:00
|
|
|
|
|
|
|
/// @notice The membership status of each member
|
2023-05-23 06:54:58 +00:00
|
|
|
/// maps from idCommitment to their index in the set
|
|
|
|
mapping(uint256 => uint256) public members;
|
2023-03-29 06:28:09 +00:00
|
|
|
|
2023-03-30 14:53:08 +00:00
|
|
|
/// @notice The balance of each user that can be withdrawn
|
|
|
|
mapping(address => uint256) public withdrawalBalance;
|
|
|
|
|
2023-03-30 06:51:48 +00:00
|
|
|
/// @notice The Poseidon hasher contract
|
2023-03-30 14:53:08 +00:00
|
|
|
IPoseidonHasher public immutable poseidonHasher;
|
2023-03-29 06:28:09 +00:00
|
|
|
|
2023-03-30 06:51:48 +00:00
|
|
|
/// 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
|
2023-03-29 06:28:09 +00:00
|
|
|
event MemberRegistered(uint256 idCommitment, uint256 index);
|
2023-03-30 06:51:48 +00:00
|
|
|
|
|
|
|
/// Emitted when a member is removed from the set
|
|
|
|
/// @param idCommitment The idCommitment of the member
|
2023-05-23 06:54:58 +00:00
|
|
|
/// @param index The index of the member in the set
|
|
|
|
event MemberWithdrawn(uint256 idCommitment, uint256 index);
|
2023-03-29 06:28:09 +00:00
|
|
|
|
|
|
|
constructor(
|
|
|
|
uint256 membershipDeposit,
|
|
|
|
uint256 depth,
|
|
|
|
address _poseidonHasher
|
|
|
|
) {
|
|
|
|
MEMBERSHIP_DEPOSIT = membershipDeposit;
|
|
|
|
DEPTH = depth;
|
|
|
|
SET_SIZE = 1 << depth;
|
|
|
|
poseidonHasher = IPoseidonHasher(_poseidonHasher);
|
|
|
|
}
|
|
|
|
|
2023-03-30 06:51:48 +00:00
|
|
|
/// Allows a user to register as a member
|
|
|
|
/// @param idCommitment The idCommitment of the member
|
2023-03-29 06:28:09 +00:00
|
|
|
function register(uint256 idCommitment) external payable {
|
2023-03-30 12:00:54 +00:00
|
|
|
if (msg.value != MEMBERSHIP_DEPOSIT)
|
|
|
|
revert InsufficientDeposit(MEMBERSHIP_DEPOSIT, msg.value);
|
2023-03-29 06:28:09 +00:00
|
|
|
_register(idCommitment, msg.value);
|
|
|
|
}
|
|
|
|
|
2023-03-30 06:51:48 +00:00
|
|
|
/// Registers a member
|
|
|
|
/// @param idCommitment The idCommitment of the member
|
|
|
|
/// @param stake The amount of eth staked by the member
|
2023-03-29 06:28:09 +00:00
|
|
|
function _register(uint256 idCommitment, uint256 stake) internal {
|
2023-05-23 06:54:58 +00:00
|
|
|
if (members[idCommitment] != 0) revert DuplicateIdCommitment();
|
|
|
|
if (idCommitmentIndex >= SET_SIZE) revert FullTree();
|
2023-03-29 11:48:00 +00:00
|
|
|
|
2023-05-23 06:54:58 +00:00
|
|
|
members[idCommitment] = idCommitmentIndex;
|
2023-03-29 11:48:00 +00:00
|
|
|
stakedAmounts[idCommitment] = stake;
|
|
|
|
|
2023-03-29 06:28:09 +00:00
|
|
|
emit MemberRegistered(idCommitment, idCommitmentIndex);
|
|
|
|
idCommitmentIndex += 1;
|
|
|
|
}
|
|
|
|
|
2023-03-30 06:51:48 +00:00
|
|
|
/// Allows a user to slash a member
|
|
|
|
/// @param secret The idSecretHash of the member
|
2023-03-30 14:53:08 +00:00
|
|
|
function slash(uint256 secret, address payable receiver) external {
|
|
|
|
_slash(secret, receiver);
|
2023-03-29 06:28:09 +00:00
|
|
|
}
|
|
|
|
|
2023-03-30 06:51:48 +00:00
|
|
|
/// 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
|
2023-03-30 14:53:08 +00:00
|
|
|
function _slash(uint256 secret, address payable receiver) internal {
|
2023-03-30 12:00:54 +00:00
|
|
|
if (receiver == address(this) || receiver == address(0))
|
2023-03-30 14:53:08 +00:00
|
|
|
revert InvalidReceiverAddress(receiver);
|
2023-03-29 11:48:00 +00:00
|
|
|
|
2023-03-29 06:28:09 +00:00
|
|
|
// derive idCommitment
|
|
|
|
uint256 idCommitment = hash(secret);
|
|
|
|
// check if member is registered
|
2023-05-23 06:54:58 +00:00
|
|
|
if (members[idCommitment] == 0) revert MemberNotRegistered(idCommitment);
|
2023-03-30 12:00:54 +00:00
|
|
|
if (stakedAmounts[idCommitment] == 0)
|
|
|
|
revert MemberHasNoStake(idCommitment);
|
2023-03-29 06:28:09 +00:00
|
|
|
|
2023-03-29 11:48:00 +00:00
|
|
|
uint256 amountToTransfer = stakedAmounts[idCommitment];
|
2023-03-29 06:28:09 +00:00
|
|
|
|
|
|
|
// delete member
|
2023-05-23 06:54:58 +00:00
|
|
|
uint256 index = members[idCommitment];
|
|
|
|
members[idCommitment] = 0;
|
2023-03-29 06:28:09 +00:00
|
|
|
stakedAmounts[idCommitment] = 0;
|
|
|
|
|
|
|
|
// refund deposit
|
2023-03-30 14:53:08 +00:00
|
|
|
withdrawalBalance[receiver] += amountToTransfer;
|
2022-11-25 09:04:30 +00:00
|
|
|
|
2023-05-23 06:54:58 +00:00
|
|
|
emit MemberWithdrawn(idCommitment, index);
|
2023-03-29 06:28:09 +00:00
|
|
|
}
|
2022-06-23 13:36:10 +00:00
|
|
|
|
2023-03-30 14:53:08 +00:00
|
|
|
/// Allows a user to withdraw funds allocated to them upon slashing a member
|
|
|
|
function withdraw() external {
|
|
|
|
uint256 amount = withdrawalBalance[msg.sender];
|
|
|
|
|
|
|
|
if (amount == 0) revert InsufficientWithdrawalBalance();
|
|
|
|
if (amount > address(this).balance)
|
|
|
|
revert InsufficientContractBalance();
|
|
|
|
|
|
|
|
withdrawalBalance[msg.sender] = 0;
|
|
|
|
|
|
|
|
payable(msg.sender).transfer(amount);
|
|
|
|
}
|
|
|
|
|
2023-03-30 06:51:48 +00:00
|
|
|
/// 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
|
2023-03-29 06:28:09 +00:00
|
|
|
function hash(uint256 input) internal view returns (uint256) {
|
|
|
|
return poseidonHasher.hash(input);
|
|
|
|
}
|
|
|
|
}
|