@@ -37,6 +37,8 @@ def test_filter_params(ub):
37
37
('eth' , 'sepolia' , 'https://api-sepolia.etherscan.io/api' ),
38
38
('bsc' , 'main' , 'https://api.bscscan.com/api' ),
39
39
('bsc' , 'testnet' , 'https://api-testnet.bscscan.com/api' ),
40
+ ('avax' , 'main' , 'https://api.snowtrace.io/api' ),
41
+ ('avax' , 'testnet' , 'https://api-testnet.snowtrace.io/api' ),
40
42
('polygon' , 'main' , 'https://api.polygonscan.com/api' ),
41
43
('polygon' , 'testnet' , 'https://api-testnet.polygonscan.com/api' ),
42
44
('optimism' , 'main' , 'https://api-optimistic.etherscan.io/api' ),
@@ -64,6 +66,8 @@ def test_api_url(api_kind, network_name, expected):
64
66
('eth' , 'sepolia' , 'https://sepolia.etherscan.io' ),
65
67
('bsc' , 'main' , 'https://bscscan.com' ),
66
68
('bsc' , 'testnet' , 'https://testnet.bscscan.com' ),
69
+ ('avax' , 'main' , 'https://snowtrace.io' ),
70
+ ('avax' , 'testnet' , 'https://testnet.snowtrace.io' ),
67
71
('polygon' , 'main' , 'https://polygonscan.com' ),
68
72
('polygon' , 'testnet' , 'https://mumbai.polygonscan.com' ),
69
73
('optimism' , 'main' , 'https://optimistic.etherscan.io' ),
@@ -91,6 +95,7 @@ def test_invalid_api_kind():
91
95
[
92
96
('eth' , 'ETH' ),
93
97
('bsc' , 'BNB' ),
98
+ ('avax' , 'AVAX' ),
94
99
('polygon' , 'MATIC' ),
95
100
('optimism' , 'ETH' ),
96
101
('arbitrum' , 'ETH' ),
0 commit comments