rln-contract/contracts/Rln.sol

19 lines
531 B
Solidity
Raw Normal View History

2023-03-29 06:58:42 +00:00
// SPDX-License-Identifier: MIT
2022-08-09 17:29:04 +00:00
pragma solidity 0.8.15;
2022-06-23 13:36:10 +00:00
import "./RlnBase.sol";
2023-03-30 14:53:08 +00:00
2023-11-30 11:32:00 +00:00
contract RLN is RlnBase {
constructor(uint256 membershipDeposit, uint256 depth, address _poseidonHasher, address _verifier)
RlnBase(membershipDeposit, depth, _poseidonHasher, _verifier)
{}
2023-03-30 14:53:08 +00:00
function _validateRegistration(uint256 idCommitment) internal pure override {}
2023-05-26 08:01:05 +00:00
function _validateSlash(uint256 idCommitment, address payable receiver, uint256[8] calldata proof)
2023-05-26 08:01:05 +00:00
internal
pure
override
{}
}