We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 015b0ad commit 93d1603Copy full SHA for 93d1603
contracts/Admin.sol
@@ -9,6 +9,8 @@ import "@openzeppelin/contracts/access/Ownable.sol";
9
@author ChainSafe Systems.
10
*/
11
contract Admin is Ownable {
12
+ address public _MPCAddress;
13
+
14
event StartKeygen();
15
event EndKeygen();
16
event KeyRefresh(string hash);
@@ -49,4 +51,4 @@ contract Admin is Ownable {
49
51
function refreshKey(string memory hash) external onlyOwner {
50
52
emit KeyRefresh(hash);
53
}
-}
54
+}
0 commit comments