evmchains 0.1.3__py3-none-any.whl → 0.1.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
evmchains/__init__.py CHANGED
@@ -7,16 +7,19 @@ below utility functions.
7
7
  import os
8
8
  import random
9
9
  import re
10
- from typing import List
10
+ from typing import TYPE_CHECKING, List
11
11
 
12
- from evmchains.chains import PUBLIC_CHAIN_META
13
- from evmchains.types import Chain
12
+ if TYPE_CHECKING:
13
+ from evmchains.types import Chain
14
14
 
15
15
  ENV_VAR_REGEX = re.compile(r"\$\{([A-Za-z0-9_]+)\}")
16
16
 
17
17
 
18
- def get_chain_meta(ecosystem: str, network: str) -> Chain:
18
+ def get_chain_meta(ecosystem: str, network: str) -> "Chain":
19
19
  """Return a Chain instance with metadata for an EVM chain."""
20
+ from evmchains.chains import PUBLIC_CHAIN_META
21
+ from evmchains.types import Chain
22
+
20
23
  if (
21
24
  ecosystem not in PUBLIC_CHAIN_META
22
25
  or network not in PUBLIC_CHAIN_META[ecosystem]
@@ -53,4 +56,19 @@ def get_random_rpc(ecosystem: str, network: str) -> str:
53
56
  return random.choice(rpcs)
54
57
 
55
58
 
59
+ def __getattr__(name: str):
60
+ if name == "PUBLIC_CHAIN_META":
61
+ from evmchains.chains import PUBLIC_CHAIN_META
62
+
63
+ return PUBLIC_CHAIN_META
64
+
65
+ elif name == "Chain":
66
+ from evmchains.types import Chain
67
+
68
+ return Chain
69
+
70
+ else:
71
+ raise AttributeError(name)
72
+
73
+
56
74
  __all__ = ["PUBLIC_CHAIN_META", "Chain", "get_chain_meta", "get_random_rpc", "get_rpcs"]
evmchains/_meta.py CHANGED
@@ -1,8 +1,13 @@
1
- # file generated by setuptools_scm
1
+ # file generated by setuptools-scm
2
2
  # don't change, don't track in version control
3
+
4
+ __all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
5
+
3
6
  TYPE_CHECKING = False
4
7
  if TYPE_CHECKING:
5
- from typing import Tuple, Union
8
+ from typing import Tuple
9
+ from typing import Union
10
+
6
11
  VERSION_TUPLE = Tuple[Union[int, str], ...]
7
12
  else:
8
13
  VERSION_TUPLE = object
@@ -12,5 +17,5 @@ __version__: str
12
17
  __version_tuple__: VERSION_TUPLE
13
18
  version_tuple: VERSION_TUPLE
14
19
 
15
- __version__ = version = '0.1.3'
16
- __version_tuple__ = version_tuple = (0, 1, 3)
20
+ __version__ = version = '0.1.5'
21
+ __version_tuple__ = version_tuple = (0, 1, 5)
evmchains/chains.py CHANGED
@@ -3,7 +3,7 @@
3
3
  !!!!!!!!!!!!!!!!!!!!!!!!! WARNING !!!!!!!!!!!!!!!!!!!!!!!!!
4
4
  !!!! DO NOT EDIT THIS FILE DIRECTLY! !!!!
5
5
  !!!! This file is auto-generated by scripts/update.py !!!!
6
- !!!! 2024-12-04 18:03:20.068411+00:00 !!!!
6
+ !!!! 2025-06-05 00:20:54.447328+00:00 !!!!
7
7
  !!!!!!!!!!!!!!!!!!!!!!!!! WARNING !!!!!!!!!!!!!!!!!!!!!!!!!
8
8
  """
9
9
 
@@ -15,7 +15,18 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
15
15
  "chain": "Abstract",
16
16
  "chainId": 2741,
17
17
  "ens": None,
18
- "explorers": [],
18
+ "explorers": [
19
+ {
20
+ "name": "Etherscan",
21
+ "standard": "EIP3091",
22
+ "url": "https://abscan.org",
23
+ },
24
+ {
25
+ "name": "Abstract Explorer",
26
+ "standard": "EIP3091",
27
+ "url": "https://explorer.mainnet.abs.xyz",
28
+ },
29
+ ],
19
30
  "faucets": [],
20
31
  "features": None,
21
32
  "icon": "abstract",
@@ -23,26 +34,26 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
23
34
  "name": "Abstract",
24
35
  "nativeCurrency": {"decimals": 18, "name": "Ether", "symbol": "ETH"},
25
36
  "networkId": 2741,
26
- "rpc": [],
37
+ "rpc": ["https://api.mainnet.abs.xyz"],
27
38
  "shortName": "abstract",
28
39
  "slip44": None,
29
40
  },
30
41
  "testnet": {
31
- "chain": "Abstract Testnet",
42
+ "chain": "Abstract Sepolia Testnet",
32
43
  "chainId": 11124,
33
44
  "ens": None,
34
45
  "explorers": [
35
46
  {
36
- "name": "Abstract Block Explorer",
37
- "standard": "none",
38
- "url": "https://explorer.testnet.abs.xyz",
47
+ "name": "Abstract Sepolia Testnet Explorer",
48
+ "standard": "EIP3091",
49
+ "url": "https://sepolia.abscan.org",
39
50
  }
40
51
  ],
41
52
  "faucets": ["https://faucet.triangleplatform.com/abstract/testnet"],
42
53
  "features": None,
43
54
  "icon": None,
44
55
  "infoURL": "https://abs.xyz/",
45
- "name": "Abstract Testnet",
56
+ "name": "Abstract Sepolia Testnet",
46
57
  "nativeCurrency": {"decimals": 18, "name": "ETH", "symbol": "ETH"},
47
58
  "networkId": 11124,
48
59
  "rpc": ["https://api.testnet.abs.xyz"],
@@ -64,7 +75,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
64
75
  ],
65
76
  "faucets": [],
66
77
  "features": None,
67
- "icon": "apechain",
78
+ "icon": None,
68
79
  "infoURL": "https://apechain.com",
69
80
  "name": "ApeChain",
70
81
  "nativeCurrency": {"decimals": 18, "name": "ApeCoin", "symbol": "APE"},
@@ -130,7 +141,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
130
141
  "https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}",
131
142
  "https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}",
132
143
  "https://arb1.arbitrum.io/rpc",
133
- "https://arbitrum-one.publicnode.com",
144
+ "https://arbitrum-one-rpc.publicnode.com",
134
145
  ],
135
146
  "shortName": "arb1",
136
147
  "slip44": None,
@@ -194,6 +205,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
194
205
  "rpc": [
195
206
  "https://sepolia-rollup.arbitrum.io/rpc",
196
207
  "https://arbitrum-sepolia.infura.io/v3/${INFURA_API_KEY}",
208
+ "https://arbitrum-sepolia-rpc.publicnode.com",
197
209
  ],
198
210
  "shortName": "arb-sep",
199
211
  "slip44": 1,
@@ -208,13 +220,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
208
220
  "name": "Arbitrum Nova Chain Explorer",
209
221
  "standard": "EIP3091",
210
222
  "url": "https://nova-explorer.arbitrum.io",
211
- },
212
- {
213
- "icon": "dexguru",
214
- "name": "dexguru",
215
- "standard": "EIP3091",
216
- "url": "https://nova.dex.guru",
217
- },
223
+ }
218
224
  ],
219
225
  "faucets": [],
220
226
  "features": None,
@@ -225,7 +231,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
225
231
  "networkId": 42170,
226
232
  "rpc": [
227
233
  "https://nova.arbitrum.io/rpc",
228
- "https://arbitrum-nova.publicnode.com",
234
+ "https://arbitrum-nova-rpc.publicnode.com",
229
235
  ],
230
236
  "shortName": "arb-nova",
231
237
  "slip44": None,
@@ -428,18 +434,14 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
428
434
  "url": "https://bartio.beratrail.io",
429
435
  }
430
436
  ],
431
- "faucets": ["https://bartio.faucet.berachain.com"],
437
+ "faucets": [],
432
438
  "features": None,
433
439
  "icon": "berachain",
434
440
  "infoURL": "https://www.berachain.com",
435
441
  "name": "Berachain bArtio",
436
442
  "nativeCurrency": {"decimals": 18, "name": "BERA Token", "symbol": "BERA"},
437
443
  "networkId": 80084,
438
- "rpc": [
439
- "https://bartio.rpc.berachain.com",
440
- "https://bera-testnet.nodeinfra.com",
441
- "https://bartio.rpc.b-harvest.io",
442
- ],
444
+ "rpc": [],
443
445
  "shortName": "berachainbArtio",
444
446
  "slip44": None,
445
447
  },
@@ -989,6 +991,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
989
991
  "https://rpc.mevblocker.io/noreverts",
990
992
  "https://rpc.mevblocker.io/fullprivacy",
991
993
  "https://eth.drpc.org",
994
+ "https://api.securerpc.com/v1",
992
995
  ],
993
996
  "shortName": "eth",
994
997
  "slip44": 60,
@@ -1100,7 +1103,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
1100
1103
  "features": None,
1101
1104
  "icon": None,
1102
1105
  "infoURL": "https://sepolia.otterscan.io",
1103
- "name": "Sepolia",
1106
+ "name": "Ethereum Sepolia",
1104
1107
  "nativeCurrency": {
1105
1108
  "decimals": 18,
1106
1109
  "name": "Sepolia Ether",
@@ -1115,6 +1118,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
1115
1118
  "https://sepolia.gateway.tenderly.co",
1116
1119
  "https://ethereum-sepolia-rpc.publicnode.com",
1117
1120
  "https://sepolia.drpc.org",
1121
+ "https://eth-sepolia.g.alchemy.com/v2/WddzdzI2o9S3COdT73d5w6AIogbKq4X-",
1118
1122
  ],
1119
1123
  "shortName": "sep",
1120
1124
  "slip44": 1,
@@ -1182,6 +1186,98 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
1182
1186
  "slip44": 1,
1183
1187
  },
1184
1188
  },
1189
+ "filecoin": {
1190
+ "mainnet": {
1191
+ "chain": "FIL",
1192
+ "chainId": 314,
1193
+ "ens": None,
1194
+ "explorers": [
1195
+ {"name": "Filfox", "standard": "none", "url": "https://filfox.info/en"},
1196
+ {"name": "Beryx", "standard": "none", "url": "https://beryx.zondax.ch"},
1197
+ {
1198
+ "name": "Glif Explorer",
1199
+ "standard": "EIP3091",
1200
+ "url": "https://explorer.glif.io",
1201
+ },
1202
+ {
1203
+ "name": "Dev.storage",
1204
+ "standard": "none",
1205
+ "url": "https://dev.storage",
1206
+ },
1207
+ {"name": "Filscan", "standard": "none", "url": "https://filscan.io"},
1208
+ {
1209
+ "name": "Filscout",
1210
+ "standard": "none",
1211
+ "url": "https://filscout.io/en",
1212
+ },
1213
+ ],
1214
+ "faucets": [],
1215
+ "features": None,
1216
+ "icon": "filecoin",
1217
+ "infoURL": "https://filecoin.io",
1218
+ "name": "Filecoin - Mainnet",
1219
+ "nativeCurrency": {"decimals": 18, "name": "filecoin", "symbol": "FIL"},
1220
+ "networkId": 314,
1221
+ "rpc": [
1222
+ "https://api.node.glif.io/",
1223
+ "https://rpc.ankr.com/filecoin",
1224
+ "https://filecoin-mainnet.chainstacklabs.com/rpc/v1",
1225
+ "https://filfox.info/rpc/v1",
1226
+ "https://filecoin.drpc.org",
1227
+ ],
1228
+ "shortName": "filecoin",
1229
+ "slip44": 461,
1230
+ },
1231
+ "calibration": {
1232
+ "chain": "FIL",
1233
+ "chainId": 314159,
1234
+ "ens": None,
1235
+ "explorers": [
1236
+ {
1237
+ "name": "Filscan - Calibration",
1238
+ "standard": "none",
1239
+ "url": "https://calibration.filscan.io",
1240
+ },
1241
+ {
1242
+ "name": "Filscout - Calibration",
1243
+ "standard": "none",
1244
+ "url": "https://calibration.filscout.com/en",
1245
+ },
1246
+ {
1247
+ "name": "Filfox - Calibration",
1248
+ "standard": "none",
1249
+ "url": "https://calibration.filfox.info",
1250
+ },
1251
+ {
1252
+ "name": "Glif Explorer - Calibration",
1253
+ "standard": "none",
1254
+ "url": "https://explorer.glif.io/?network=calibration",
1255
+ },
1256
+ {"name": "Beryx", "standard": "none", "url": "https://beryx.zondax.ch"},
1257
+ ],
1258
+ "faucets": ["https://faucet.calibration.fildev.network/"],
1259
+ "features": None,
1260
+ "icon": "filecoin",
1261
+ "infoURL": "https://filecoin.io",
1262
+ "name": "Filecoin - Calibration testnet",
1263
+ "nativeCurrency": {
1264
+ "decimals": 18,
1265
+ "name": "testnet filecoin",
1266
+ "symbol": "tFIL",
1267
+ },
1268
+ "networkId": 314159,
1269
+ "rpc": [
1270
+ "https://api.calibration.node.glif.io/rpc/v1",
1271
+ "https://rpc.ankr.com/filecoin_testnet",
1272
+ "https://filecoin-calibration.chainstacklabs.com/rpc/v1",
1273
+ "https://filecoin-calibration.chainup.net/rpc/v1",
1274
+ "https://calibration.filfox.info/rpc/v1",
1275
+ "https://filecoin-calibration.drpc.org",
1276
+ ],
1277
+ "shortName": "filecoin-calibration",
1278
+ "slip44": 1,
1279
+ },
1280
+ },
1185
1281
  "flow-evm": {
1186
1282
  "mainnet": {
1187
1283
  "chain": "Flow",
@@ -1198,7 +1294,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
1198
1294
  "features": None,
1199
1295
  "icon": "flowevm",
1200
1296
  "infoURL": "https://developers.flow.com/evm/about",
1201
- "name": "EVM on Flow",
1297
+ "name": "Flow EVM Mainnet",
1202
1298
  "nativeCurrency": {"decimals": 18, "name": "FLOW", "symbol": "FLOW"},
1203
1299
  "networkId": 747,
1204
1300
  "rpc": ["https://mainnet.evm.nodes.onflow.org"],
@@ -1220,7 +1316,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
1220
1316
  "features": None,
1221
1317
  "icon": "flowevm",
1222
1318
  "infoURL": "https://developers.flow.com/evm/about",
1223
- "name": "EVM on Flow Testnet",
1319
+ "name": "Flow EVM Testnet",
1224
1320
  "nativeCurrency": {"decimals": 18, "name": "FLOW", "symbol": "FLOW"},
1225
1321
  "networkId": 545,
1226
1322
  "rpc": ["https://testnet.evm.nodes.onflow.org"],
@@ -1251,7 +1347,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
1251
1347
  "symbol": "frxETH",
1252
1348
  },
1253
1349
  "networkId": 252,
1254
- "rpc": ["https://rpc.frax.com"],
1350
+ "rpc": ["https://rpc.frax.com", "https://fraxtal-rpc.publicnode.com"],
1255
1351
  "shortName": "fraxtal",
1256
1352
  "slip44": None,
1257
1353
  },
@@ -1271,13 +1367,12 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
1271
1367
  "icon": "fraxtal",
1272
1368
  "infoURL": "https://testnet.frax.com",
1273
1369
  "name": "Fraxtal Testnet",
1274
- "nativeCurrency": {
1275
- "decimals": 18,
1276
- "name": "Frax Ether",
1277
- "symbol": "frxETH",
1278
- },
1370
+ "nativeCurrency": {"decimals": 18, "name": "Frax", "symbol": "FRAX"},
1279
1371
  "networkId": 2522,
1280
- "rpc": ["https://rpc.testnet.frax.com"],
1372
+ "rpc": [
1373
+ "https://rpc.testnet.frax.com",
1374
+ "https://fraxtal-holesky-rpc.publicnode.com",
1375
+ ],
1281
1376
  "shortName": "fraxtal-testnet",
1282
1377
  "slip44": 1,
1283
1378
  },
@@ -1714,7 +1809,11 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
1714
1809
  "name": "Metis Andromeda Mainnet",
1715
1810
  "nativeCurrency": {"decimals": 18, "name": "Metis", "symbol": "METIS"},
1716
1811
  "networkId": 1088,
1717
- "rpc": ["https://andromeda.metis.io/?owner=1088", "https://metis.drpc.org"],
1812
+ "rpc": [
1813
+ "https://andromeda.metis.io/?owner=1088",
1814
+ "https://metis.drpc.org",
1815
+ "https://metis-rpc.publicnode.com",
1816
+ ],
1718
1817
  "shortName": "metis-andromeda",
1719
1818
  "slip44": None,
1720
1819
  },
@@ -2242,6 +2341,35 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
2242
2341
  "slip44": None,
2243
2342
  },
2244
2343
  },
2344
+ "rise": {
2345
+ "testnet": {
2346
+ "chain": "ETH",
2347
+ "chainId": 11155931,
2348
+ "ens": None,
2349
+ "explorers": [
2350
+ {
2351
+ "icon": "blockscout",
2352
+ "name": "blockscout",
2353
+ "standard": "EIP3091",
2354
+ "url": "https://explorer.testnet.riselabs.xyz",
2355
+ }
2356
+ ],
2357
+ "faucets": ["https://faucet.testnet.riselabs.xyz"],
2358
+ "features": [{"name": "EIP155"}, {"name": "EIP1559"}],
2359
+ "icon": "rise",
2360
+ "infoURL": "https://www.riselabs.xyz/",
2361
+ "name": "RISE Testnet",
2362
+ "nativeCurrency": {
2363
+ "decimals": 18,
2364
+ "name": "RISE Testnet Ether",
2365
+ "symbol": "ETH",
2366
+ },
2367
+ "networkId": 11155931,
2368
+ "rpc": ["https://testnet.riselabs.xyz"],
2369
+ "shortName": "rise-testnet",
2370
+ "slip44": None,
2371
+ },
2372
+ },
2245
2373
  "rootstock": {
2246
2374
  "mainnet": {
2247
2375
  "chain": "Rootstock",
@@ -2328,12 +2456,16 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
2328
2456
  "symbol": "BONE",
2329
2457
  },
2330
2458
  "networkId": 109,
2331
- "rpc": ["https://www.shibrpc.com"],
2459
+ "rpc": [
2460
+ "https://www.shibrpc.com",
2461
+ "https://rpc.shibrpc.com",
2462
+ "https://shib.nownodes.io",
2463
+ ],
2332
2464
  "shortName": "shibariumecosystem",
2333
2465
  "slip44": None,
2334
2466
  },
2335
2467
  "puppynet": {
2336
- "chain": "Puppynet Shibarium",
2468
+ "chain": "Puppynet",
2337
2469
  "chainId": 157,
2338
2470
  "ens": None,
2339
2471
  "explorers": [
@@ -2343,11 +2475,11 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
2343
2475
  "url": "https://puppyscan.shib.io",
2344
2476
  }
2345
2477
  ],
2346
- "faucets": ["https://beta.shibariumtech.com/faucet"],
2478
+ "faucets": ["https://shibarium.shib.io/faucet"],
2347
2479
  "features": None,
2348
2480
  "icon": "shibarium",
2349
2481
  "infoURL": "https://shibariumecosystem.com",
2350
- "name": "Puppynet Shibarium",
2482
+ "name": "Puppynet",
2351
2483
  "nativeCurrency": {"decimals": 18, "name": "BONE", "symbol": "BONE"},
2352
2484
  "networkId": 157,
2353
2485
  "rpc": ["https://puppynet.shibrpc.com"],
@@ -2474,18 +2606,62 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
2474
2606
  {
2475
2607
  "name": "Blockscout Minato explorer",
2476
2608
  "standard": "EIP3091",
2477
- "url": "https://explorer-testnet.soneium.org",
2609
+ "url": "https://soneium-minato.blockscout.com",
2478
2610
  }
2479
2611
  ],
2480
2612
  "faucets": [],
2481
2613
  "features": None,
2482
2614
  "icon": "minato",
2483
2615
  "infoURL": "https://soneium.org",
2484
- "name": "Minato",
2616
+ "name": "Soneium Testnet Minato",
2485
2617
  "nativeCurrency": {"decimals": 18, "name": "Ether", "symbol": "ETH"},
2486
2618
  "networkId": 1946,
2487
2619
  "rpc": ["https://rpc.minato.soneium.org"],
2488
- "shortName": "minato",
2620
+ "shortName": "soneium-minato",
2621
+ "slip44": None,
2622
+ },
2623
+ },
2624
+ "sonic": {
2625
+ "mainnet": {
2626
+ "chain": "sonic",
2627
+ "chainId": 146,
2628
+ "ens": None,
2629
+ "explorers": [
2630
+ {
2631
+ "icon": "sonic",
2632
+ "name": "sonic",
2633
+ "standard": "none",
2634
+ "url": "https://explorer.soniclabs.com",
2635
+ }
2636
+ ],
2637
+ "faucets": [],
2638
+ "features": [{"name": "EIP155"}],
2639
+ "icon": "sonic",
2640
+ "infoURL": "https://soniclabs.com",
2641
+ "name": "Sonic Mainnet",
2642
+ "nativeCurrency": {"decimals": 18, "name": "Sonic", "symbol": "S"},
2643
+ "networkId": 146,
2644
+ "rpc": ["https://rpc.soniclabs.com", "https://sonic-rpc.publicnode.com"],
2645
+ "shortName": "sonic",
2646
+ "slip44": None,
2647
+ },
2648
+ "blaze": {
2649
+ "chain": "blaze-testnet",
2650
+ "chainId": 57054,
2651
+ "ens": None,
2652
+ "explorers": [],
2653
+ "faucets": ["https://blaze.soniclabs.com/account"],
2654
+ "features": [{"name": "EIP155"}],
2655
+ "icon": "sonic",
2656
+ "infoURL": "https://blaze.soniclabs.com",
2657
+ "name": "Sonic Blaze Testnet",
2658
+ "nativeCurrency": {"decimals": 18, "name": "Sonic", "symbol": "S"},
2659
+ "networkId": 57054,
2660
+ "rpc": [
2661
+ "https://rpc.blaze.soniclabs.com",
2662
+ "https://sonic-blaze-rpc.publicnode.com",
2663
+ ],
2664
+ "shortName": "blaze",
2489
2665
  "slip44": None,
2490
2666
  },
2491
2667
  },
@@ -2510,7 +2686,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
2510
2686
  "features": None,
2511
2687
  "icon": "taiko",
2512
2688
  "infoURL": "https://taiko.xyz",
2513
- "name": "Taiko Mainnet",
2689
+ "name": "Taiko Alethia",
2514
2690
  "nativeCurrency": {"decimals": 18, "name": "Ether", "symbol": "ETH"},
2515
2691
  "networkId": 167000,
2516
2692
  "rpc": [
@@ -2540,7 +2716,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
2540
2716
  "features": None,
2541
2717
  "icon": "taiko",
2542
2718
  "infoURL": "https://taiko.xyz",
2543
- "name": "Taiko Hekla L2",
2719
+ "name": "Taiko Hekla",
2544
2720
  "nativeCurrency": {"decimals": 18, "name": "Ether", "symbol": "ETH"},
2545
2721
  "networkId": 167009,
2546
2722
  "rpc": [
@@ -2570,7 +2746,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
2570
2746
  ],
2571
2747
  "faucets": [],
2572
2748
  "features": None,
2573
- "icon": None,
2749
+ "icon": "unichain-testnet",
2574
2750
  "infoURL": "https://unichain.org",
2575
2751
  "name": "Unichain Sepolia Testnet",
2576
2752
  "nativeCurrency": {
@@ -2579,7 +2755,10 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
2579
2755
  "symbol": "ETH",
2580
2756
  },
2581
2757
  "networkId": 1301,
2582
- "rpc": ["https://sepolia.unichain.org"],
2758
+ "rpc": [
2759
+ "https://sepolia.unichain.org",
2760
+ "https://unichain-sepolia-rpc.publicnode.com",
2761
+ ],
2583
2762
  "shortName": "unichain-sep",
2584
2763
  "slip44": None,
2585
2764
  },
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: evmchains
3
- Version: 0.1.3
3
+ Version: 0.1.5
4
4
  Summary: Packaged metadata on Ethereum Virtual Machine (EVM) chains
5
5
  License: Apache License
6
6
  Version 2.0, January 2004
@@ -220,6 +220,7 @@ Classifier: Programming Language :: Python :: 3.9
220
220
  Classifier: Programming Language :: Python :: 3.10
221
221
  Classifier: Programming Language :: Python :: 3.11
222
222
  Classifier: Programming Language :: Python :: 3.12
223
+ Classifier: Programming Language :: Python :: 3.13
223
224
  Requires-Python: >=3.8
224
225
  Description-Content-Type: text/markdown
225
226
  License-File: LICENSE
@@ -233,6 +234,7 @@ Requires-Dist: requests~=2.31.0; extra == "dev"
233
234
  Requires-Dist: ruff~=0.6.8; extra == "dev"
234
235
  Requires-Dist: setuptools-scm~=8.0.4; extra == "dev"
235
236
  Requires-Dist: types-requests>=2.31.0.20240106; extra == "dev"
237
+ Dynamic: license-file
236
238
 
237
239
  # Python EVM Chains Metadata
238
240
 
@@ -0,0 +1,10 @@
1
+ evmchains/__init__.py,sha256=5peEtD7gzxFVFTq1bWGV5-RRyuyH4dbU5mM7NNxOr18,2032
2
+ evmchains/_meta.py,sha256=Y4jy4bEMmwl_qNPCmiMFnlQ2ofMoqyG37hp8uwI3m10,511
3
+ evmchains/chains.py,sha256=I2JwMWZDxF-5j77H5ZAmtTVPqr9MYDHdBOrVWo-Q6YY,108281
4
+ evmchains/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ evmchains/types.py,sha256=5z0yDMMgbofSjwExbraYpKccvb36IYAlGnqvyw6G7Tw,616
6
+ evmchains-0.1.5.dist-info/licenses/LICENSE,sha256=wKVouzimXmZeaCj3f48Vua0vk91U4vjrrt2Ax0u3qBs,11342
7
+ evmchains-0.1.5.dist-info/METADATA,sha256=zDkgDoi0UTDf-l6Cn09cwukKW0MDSiq_nKPYwO_gJ-U,15855
8
+ evmchains-0.1.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
9
+ evmchains-0.1.5.dist-info/top_level.txt,sha256=qwbaOucZ5qXfj0eTHrIujLTezgtcInyR_U-Ef2P4oic,10
10
+ evmchains-0.1.5.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,10 +0,0 @@
1
- evmchains/__init__.py,sha256=9lCyb-ttFWgOcLEPEjkF8qyFmu5YpJMI7RU9FMVkkb0,1658
2
- evmchains/_meta.py,sha256=L5DCMp1QAlSqy-8bW7d51bLubTxNjZGYc5fMQkb752U,411
3
- evmchains/chains.py,sha256=4rpFHlGJ_ZJ9A7N9b_2kpdwyXlLJVsJ2ysm3hnb6ego,101599
4
- evmchains/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- evmchains/types.py,sha256=5z0yDMMgbofSjwExbraYpKccvb36IYAlGnqvyw6G7Tw,616
6
- evmchains-0.1.3.dist-info/LICENSE,sha256=wKVouzimXmZeaCj3f48Vua0vk91U4vjrrt2Ax0u3qBs,11342
7
- evmchains-0.1.3.dist-info/METADATA,sha256=CbM9BW-AsznmABBnBbZHY78EgOK55HDqjrzYpr7oiRQ,15782
8
- evmchains-0.1.3.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
9
- evmchains-0.1.3.dist-info/top_level.txt,sha256=qwbaOucZ5qXfj0eTHrIujLTezgtcInyR_U-Ef2P4oic,10
10
- evmchains-0.1.3.dist-info/RECORD,,