File tree 3 files changed +26
-1
lines changed
3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -7,3 +7,4 @@ class ContractMetadata:
7
7
name : Optional [str ]
8
8
abi : List [Dict [str , Any ]]
9
9
partial_match : bool
10
+ implementation : Optional [str ] = None
Original file line number Diff line number Diff line change @@ -359,8 +359,16 @@ def _process_contract_metadata(
359
359
) -> Optional [ContractMetadata ]:
360
360
contract_name = contract_data ["ContractName" ]
361
361
contract_abi = contract_data ["ABI" ]
362
+ contract_proxy_implementation_address = (
363
+ contract_data .get ("Implementation" ) or None
364
+ )
362
365
if contract_abi :
363
- return ContractMetadata (contract_name , contract_abi , False )
366
+ return ContractMetadata (
367
+ contract_name ,
368
+ contract_abi ,
369
+ False ,
370
+ contract_proxy_implementation_address ,
371
+ )
364
372
return None
365
373
366
374
def get_contract_metadata (
Original file line number Diff line number Diff line change @@ -36,13 +36,29 @@ def test_etherscan_get_abi(self):
36
36
)
37
37
self .assertEqual (contract_metadata .name , "GnosisSafe" )
38
38
self .assertEqual (contract_metadata .abi , safe_master_copy_abi )
39
+ self .assertIsNone (contract_metadata .implementation )
39
40
40
41
random_address = "0xaE32496491b53841efb51829d6f886387708F99a"
41
42
self .assertIsNone (etherscan_api .get_contract_abi (random_address ))
42
43
self .assertIsNone (etherscan_api .get_contract_metadata (random_address ))
43
44
except EtherscanRateLimitError :
44
45
self .skipTest ("Etherscan rate limit reached" )
45
46
47
+ def test_etherscan_get_contract_metadata (self ):
48
+ try :
49
+ etherscan_api = self .get_etherscan_api (EthereumNetwork .MAINNET )
50
+ proxy_address = "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"
51
+
52
+ contract_metadata = etherscan_api .get_contract_metadata (proxy_address )
53
+ self .assertEqual (contract_metadata .name , "FiatTokenProxy" )
54
+ self .assertEqual (
55
+ contract_metadata .implementation ,
56
+ "0x43506849d7c04f9138d1a2050bbf3a0c054402dd" ,
57
+ )
58
+
59
+ except EtherscanRateLimitError :
60
+ self .skipTest ("Etherscan rate limit reached" )
61
+
46
62
def test_is_supported_network (self ):
47
63
try :
48
64
self .assertTrue (
You can’t perform that action at this time.
0 commit comments