We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement registration function:
function registerID( uint256 id, address primaryWallet, bytes memory signature ) external payable onlyRegistrar
Implement signature verification:
function verifyPrimarySignature( uint256 id, address primaryWallet, bytes memory signature ) internal view returns (bool)
Requirements:
Events Emitted:
IDRegistered( uint256 indexed id, address indexed primaryWallet, address indexed registrar, uint256 fee ) RegistrationFailed( uint256 indexed id, address primaryWallet, address registrar, string reason ) event IDRegistrationCompleted( uint256 indexed id, address indexed primaryWallet, uint256 fee ); event IDRegistrationFailed( uint256 indexed id, address primaryWallet, string reason ); event FeeCollected( uint256 indexed id, uint256 amount, address indexed collector );
The text was updated successfully, but these errors were encountered:
Husienvora
No branches or pull requests
Implement registration function:
Implement signature verification:
Requirements:
Events Emitted:
The text was updated successfully, but these errors were encountered: