InstaContract/contracts/MoatAddress.sol

33 lines
965 B
Solidity
Raw Normal View History

2018-10-24 17:22:58 +00:00
// Implement the proper governance mechanism to update the admin address like admin have rights to upgrade anything but not just "admin". Governance will be used to set admin address.
pragma solidity ^0.4.24;
2018-10-25 04:52:53 +00:00
contract AddressRegistry {
2018-10-25 04:52:53 +00:00
event AddressChanged(string name, address target);
mapping(bytes32 => address) internal addressRegistry;
modifier onlyAdmin() {
require(
msg.sender == getAddr("admin"),
"Permission Denied"
);
_;
}
constructor() public {
2018-10-25 04:52:53 +00:00
addressRegistry[keccak256("admin")] = msg.sender;
}
2018-10-25 04:52:53 +00:00
function setAddr(string name, address newAddress) public onlyAdmin {
addressRegistry[keccak256(name)] = newAddress;
emit AddressChanged(name, newAddress);
}
2018-10-25 04:52:53 +00:00
function getAddr(string name) public view returns(address addr) {
addr = addressRegistry[keccak256(name)];
require(addr != address(0), "Not a valid address.");
}
}