Registry for managing polymath feature switches (FeatureRegistry.sol)
View Source: contracts/FeatureRegistry.sol
↗ Extends: IFeatureRegistry, ReclaimTokens
FeatureRegistry
Contract Members
Constants & Variables
mapping(bytes32 => bool) public featureStatus;
Functions
getFeatureStatus
⤾ overrides IFeatureRegistry.getFeatureStatus
Get the status of a feature
function getFeatureStatus(string _nameKey) external view
returns(bool)
Returns
bool
Arguments
Name
Type
Description
_nameKey
string
is the key for the feature status mapping
setFeatureStatus
⤾ overrides IFeatureRegistry.setFeatureStatus
change a feature status
function setFeatureStatus(string _nameKey, bool _newStatus) external nonpayable onlyOwner
Arguments
Name
Type
Description
_nameKey
string
is the key for the feature status mapping
_newStatus
bool
is the new feature status
Last updated
Was this helpful?