You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.0 KiB
44 lines
1.0 KiB
pragma solidity ^0.5.0;
|
|
|
|
import "../../GSN/Context.sol";
|
|
import "../Roles.sol";
|
|
|
|
contract SignerRole is Context {
|
|
using Roles for Roles.Role;
|
|
|
|
event SignerAdded(address indexed account);
|
|
event SignerRemoved(address indexed account);
|
|
|
|
Roles.Role private _signers;
|
|
|
|
constructor () internal {
|
|
_addSigner(_msgSender());
|
|
}
|
|
|
|
modifier onlySigner() {
|
|
require(isSigner(_msgSender()), "SignerRole: caller does not have the Signer role");
|
|
_;
|
|
}
|
|
|
|
function isSigner(address account) public view returns (bool) {
|
|
return _signers.has(account);
|
|
}
|
|
|
|
function addSigner(address account) public onlySigner {
|
|
_addSigner(account);
|
|
}
|
|
|
|
function renounceSigner() public {
|
|
_removeSigner(_msgSender());
|
|
}
|
|
|
|
function _addSigner(address account) internal {
|
|
_signers.add(account);
|
|
emit SignerAdded(account);
|
|
}
|
|
|
|
function _removeSigner(address account) internal {
|
|
_signers.remove(account);
|
|
emit SignerRemoved(account);
|
|
}
|
|
}
|
|
|