diff --git a/contracts/CrossChainProofOfHumanity.sol b/contracts/CrossChainProofOfHumanity.sol index 4712b5e..1338494 100644 --- a/contracts/CrossChainProofOfHumanity.sol +++ b/contracts/CrossChainProofOfHumanity.sol @@ -1,5 +1,5 @@ /** @authors: [@andreimvp] - * @reviewers: [@unknownunknown1*, @fnanni-0*, @hrishibhat*, @divyangchauhan] + * @reviewers: [@unknownunknown1*, @fnanni-0*, @hrishibhat*, @divyangchauhan, @Harman-singh-waraich] * @auditors: [] * @bounties: [] * @deployments: [] diff --git a/contracts/ProofOfHumanity.sol b/contracts/ProofOfHumanity.sol index 1c08c50..5c6d593 100644 --- a/contracts/ProofOfHumanity.sol +++ b/contracts/ProofOfHumanity.sol @@ -1,5 +1,5 @@ /** @authors: [@andreimvp] - * @reviewers: [@unknownunknown1, @shotaronowhere*, @gratestas, Param, @fnanni-0*, @divyangchauhan] + * @reviewers: [@unknownunknown1, @shotaronowhere*, @gratestas, Param, @fnanni-0*, @divyangchauhan, @Harman-singh-waraich] * @auditors: [] * @bounties: [] * @deployments: [] @@ -355,15 +355,15 @@ contract ProofOfHumanity is IProofOfHumanity, IArbitrable, IEvidence { uint256 disputeId ); - /** @dev Emitted when humanity is succesfully claimed. + /** @dev Emitted when humanity is successfully claimed. * @param humanityId The humanity ID. - * @param requestId The ID of the succesfull request. + * @param requestId The ID of the successfull request. */ event HumanityClaimed(bytes20 humanityId, uint256 requestId); - /** @dev Emitted when humanity is succesfully revoked. + /** @dev Emitted when humanity is successfully revoked. * @param humanityId The humanity ID. - * @param requestId The ID of the succesfull request. + * @param requestId The ID of the successfull request. */ event HumanityRevoked(bytes20 humanityId, uint256 requestId); @@ -374,7 +374,7 @@ contract ProofOfHumanity is IProofOfHumanity, IArbitrable, IEvidence { */ event VouchesProcessed(bytes20 humanityId, uint256 requestId, uint256 endIndex); - /** @dev Emitted when the challenge period is restarted after an unsuccesful challenge. + /** @dev Emitted when the challenge period is restarted after an unsuccessful challenge. * @param humanityId The humanity ID. * @param requestId The ID of the request. * @param challengeId The ID of the challenge. diff --git a/contracts/extending-old/ForkModule.sol b/contracts/extending-old/ForkModule.sol index 53ea30e..78fbe5e 100644 --- a/contracts/extending-old/ForkModule.sol +++ b/contracts/extending-old/ForkModule.sol @@ -1,5 +1,5 @@ /** @authors: [] - * @reviewers: [@divyangchauhan] + * @reviewers: [@divyangchauhan, @Harman-singh-waraich] * @auditors: [] * @bounties: [] * @deployments: [] @@ -94,7 +94,7 @@ contract ForkModule is IForkModule { * - Submission must be registered in v1. * * @param _submissionID Address corresponding to the human. - * @return expirationTime Expiration time of the revoked humanity. Used for. + * @return expirationTime Expiration time of the revoked humanity. */ function tryRemove(address _submissionID) external override onlyV2 returns (uint40 expirationTime) { require(!removed[_submissionID], "removed!"); diff --git a/contracts/extending-old/ProofOfHumanityExtended.sol b/contracts/extending-old/ProofOfHumanityExtended.sol index 7f98ee7..52b8257 100644 --- a/contracts/extending-old/ProofOfHumanityExtended.sol +++ b/contracts/extending-old/ProofOfHumanityExtended.sol @@ -1,5 +1,5 @@ /** @authors: [@andreimvp] - * @reviewers: [@unknownunknown1, @shotaronowhere*, @gratestas, Param, @fnanni-0*, @divyangchauhan] + * @reviewers: [@unknownunknown1, @shotaronowhere*, @gratestas, Param, @fnanni-0*, @divyangchauhan, @Harman-singh-waraich] * @auditors: [] * @bounties: [] * @deployments: [] @@ -358,15 +358,15 @@ contract ProofOfHumanityExtended is IProofOfHumanity, IArbitrable, IEvidence { uint256 disputeId ); - /** @dev Emitted when humanity is succesfully claimed. + /** @dev Emitted when humanity is successfully claimed. * @param humanityId The humanity ID. - * @param requestId The ID of the succesfull request. + * @param requestId The ID of the successfull request. */ event HumanityClaimed(bytes20 humanityId, uint256 requestId); - /** @dev Emitted when humanity is succesfully revoked. + /** @dev Emitted when humanity is successfully revoked. * @param humanityId The humanity ID. - * @param requestId The ID of the succesfull request. + * @param requestId The ID of the successfull request. */ event HumanityRevoked(bytes20 humanityId, uint256 requestId); @@ -377,7 +377,7 @@ contract ProofOfHumanityExtended is IProofOfHumanity, IArbitrable, IEvidence { */ event VouchesProcessed(bytes20 humanityId, uint256 requestId, uint256 endIndex); - /** @dev Emitted when the challenge period is restarted after an unsuccesful challenge. + /** @dev Emitted when the challenge period is restarted after an unsuccessful challenge. * @param humanityId The humanity ID. * @param requestId The ID of the request. * @param challengeId The ID of the challenge.