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 fee management functions:
function setRegistrationFee(uint256 _fee) external onlyOwner function setFeeCollector(address _collector) external onlyOwner
Implement registrar management:
function addRegistrar(address _registrar) external onlyOwner function removeRegistrar(address _registrar) external onlyOwner
Implement pause functionality:
function pause() external onlyOwner function unpause() external onlyOwner
Function Parameters:
setRegistrationFee: - _fee: uint256 (amount in wei) setFeeCollector: - _collector: address (EOA wallet address) addRegistrar: - _registrar: address
Events Emitted:
RegistrarAdded(address indexed registrar, address indexed addedBy) ContractPaused(address indexed by) ContractUnpaused(address indexed by)
event RegistrationFeeUpdated(uint256 indexed oldFee, uint256 indexed newFee); event FeeCollectorUpdated(address indexed oldCollector, address indexed newCollector); event RegistrarAdded(address indexed registrar, address indexed addedBy); event ContractPaused(address indexed by); event ContractUnpaused(address indexed by);
The text was updated successfully, but these errors were encountered:
Husienvora
No branches or pull requests
Implement fee management functions:
Implement registrar management:
Implement pause functionality:
Function Parameters:
Events Emitted:
Events Emitted:
The text was updated successfully, but these errors were encountered: