Create AddressAssociationAttesterRegistry.sol
#2
by
laksc
- opened
AddressAssociationAttesterRegistry.sol
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
AddressAssociationAttesterRegistry:
|
2 |
+
owner: address
|
3 |
+
manager: address
|
4 |
+
newOwner: address
|
5 |
+
events:
|
6 |
+
- NewOwner:
|
7 |
+
indexed:
|
8 |
+
- _from: address
|
9 |
+
- _to: address
|
10 |
+
- NewManager:
|
11 |
+
indexed:
|
12 |
+
- _from: address
|
13 |
+
- _to: address
|
14 |
+
- NewAddress:
|
15 |
+
indexed:
|
16 |
+
- _from: address
|
17 |
+
- _to: address
|
18 |
+
- NewAddressAsManager:
|
19 |
+
indexed:
|
20 |
+
- _from: address
|
21 |
+
- _to: address
|
22 |
+
- NewAddressAsAddress:
|
23 |
+
indexed:
|
24 |
+
- _from: address
|
25 |
+
- _to: address
|
26 |
+
- NewAddressAsAddressRegistry:
|
27 |
+
indexed:
|
28 |
+
- _from: address
|
29 |
+
- _to: address
|