patrickbdevaney laksc commited on
Commit
9adc0d6
1 Parent(s): c85ad21

Create AddressAssociationAttesterRegistry.sol (#2)

Browse files

- Create AddressAssociationAttesterRegistry.sol (0ee66b33dd6109516db24b104e658777b2e5f998)


Co-authored-by: cl <laksc@users.noreply.huggingface.co>

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