evmchains 0.1.3__tar.gz → 0.1.4__tar.gz
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-0.1.3 → evmchains-0.1.4}/.github/workflows/test.yaml +1 -1
- {evmchains-0.1.3 → evmchains-0.1.4}/PKG-INFO +3 -2
- {evmchains-0.1.3 → evmchains-0.1.4}/evmchains/__init__.py +22 -4
- {evmchains-0.1.3 → evmchains-0.1.4}/evmchains/_meta.py +9 -4
- {evmchains-0.1.3 → evmchains-0.1.4}/evmchains/chains.py +191 -33
- {evmchains-0.1.3 → evmchains-0.1.4}/evmchains.egg-info/PKG-INFO +3 -2
- {evmchains-0.1.3 → evmchains-0.1.4}/pyproject.toml +2 -1
- {evmchains-0.1.3 → evmchains-0.1.4}/scripts/update.py +8 -0
- {evmchains-0.1.3 → evmchains-0.1.4}/.github/workflows/release.yaml +0 -0
- {evmchains-0.1.3 → evmchains-0.1.4}/.gitignore +0 -0
- {evmchains-0.1.3 → evmchains-0.1.4}/CONTRIBUTING.md +0 -0
- {evmchains-0.1.3 → evmchains-0.1.4}/LICENSE +0 -0
- {evmchains-0.1.3 → evmchains-0.1.4}/README.md +0 -0
- {evmchains-0.1.3 → evmchains-0.1.4}/evmchains/py.typed +0 -0
- {evmchains-0.1.3 → evmchains-0.1.4}/evmchains/types.py +0 -0
- {evmchains-0.1.3 → evmchains-0.1.4}/evmchains.egg-info/SOURCES.txt +0 -0
- {evmchains-0.1.3 → evmchains-0.1.4}/evmchains.egg-info/dependency_links.txt +0 -0
- {evmchains-0.1.3 → evmchains-0.1.4}/evmchains.egg-info/requires.txt +0 -0
- {evmchains-0.1.3 → evmchains-0.1.4}/evmchains.egg-info/top_level.txt +0 -0
- {evmchains-0.1.3 → evmchains-0.1.4}/setup.cfg +0 -0
- {evmchains-0.1.3 → evmchains-0.1.4}/setup.py +0 -0
- {evmchains-0.1.3 → evmchains-0.1.4}/tests/test_func.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: evmchains
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
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
|
|
@@ -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
|
-
|
|
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"]
|
|
@@ -1,8 +1,13 @@
|
|
|
1
|
-
# file generated by
|
|
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
|
|
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.
|
|
16
|
-
__version_tuple__ = version_tuple = (0, 1,
|
|
20
|
+
__version__ = version = '0.1.4'
|
|
21
|
+
__version_tuple__ = version_tuple = (0, 1, 4)
|
|
@@ -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
|
-
!!!!
|
|
6
|
+
!!!! 2025-03-04 22:42:36.979879+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
|
|
37
|
-
"standard": "
|
|
38
|
-
"url": "https://
|
|
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"],
|
|
@@ -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,
|
|
@@ -989,6 +995,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
|
|
|
989
995
|
"https://rpc.mevblocker.io/noreverts",
|
|
990
996
|
"https://rpc.mevblocker.io/fullprivacy",
|
|
991
997
|
"https://eth.drpc.org",
|
|
998
|
+
"https://api.securerpc.com/v1",
|
|
992
999
|
],
|
|
993
1000
|
"shortName": "eth",
|
|
994
1001
|
"slip44": 60,
|
|
@@ -1115,6 +1122,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
|
|
|
1115
1122
|
"https://sepolia.gateway.tenderly.co",
|
|
1116
1123
|
"https://ethereum-sepolia-rpc.publicnode.com",
|
|
1117
1124
|
"https://sepolia.drpc.org",
|
|
1125
|
+
"https://eth-sepolia.g.alchemy.com/v2/WddzdzI2o9S3COdT73d5w6AIogbKq4X-",
|
|
1118
1126
|
],
|
|
1119
1127
|
"shortName": "sep",
|
|
1120
1128
|
"slip44": 1,
|
|
@@ -1182,6 +1190,98 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
|
|
|
1182
1190
|
"slip44": 1,
|
|
1183
1191
|
},
|
|
1184
1192
|
},
|
|
1193
|
+
"filecoin": {
|
|
1194
|
+
"mainnet": {
|
|
1195
|
+
"chain": "FIL",
|
|
1196
|
+
"chainId": 314,
|
|
1197
|
+
"ens": None,
|
|
1198
|
+
"explorers": [
|
|
1199
|
+
{"name": "Filfox", "standard": "none", "url": "https://filfox.info/en"},
|
|
1200
|
+
{"name": "Beryx", "standard": "none", "url": "https://beryx.zondax.ch"},
|
|
1201
|
+
{
|
|
1202
|
+
"name": "Glif Explorer",
|
|
1203
|
+
"standard": "EIP3091",
|
|
1204
|
+
"url": "https://explorer.glif.io",
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
"name": "Dev.storage",
|
|
1208
|
+
"standard": "none",
|
|
1209
|
+
"url": "https://dev.storage",
|
|
1210
|
+
},
|
|
1211
|
+
{"name": "Filscan", "standard": "none", "url": "https://filscan.io"},
|
|
1212
|
+
{
|
|
1213
|
+
"name": "Filscout",
|
|
1214
|
+
"standard": "none",
|
|
1215
|
+
"url": "https://filscout.io/en",
|
|
1216
|
+
},
|
|
1217
|
+
],
|
|
1218
|
+
"faucets": [],
|
|
1219
|
+
"features": None,
|
|
1220
|
+
"icon": "filecoin",
|
|
1221
|
+
"infoURL": "https://filecoin.io",
|
|
1222
|
+
"name": "Filecoin - Mainnet",
|
|
1223
|
+
"nativeCurrency": {"decimals": 18, "name": "filecoin", "symbol": "FIL"},
|
|
1224
|
+
"networkId": 314,
|
|
1225
|
+
"rpc": [
|
|
1226
|
+
"https://api.node.glif.io/",
|
|
1227
|
+
"https://rpc.ankr.com/filecoin",
|
|
1228
|
+
"https://filecoin-mainnet.chainstacklabs.com/rpc/v1",
|
|
1229
|
+
"https://filfox.info/rpc/v1",
|
|
1230
|
+
"https://filecoin.drpc.org",
|
|
1231
|
+
],
|
|
1232
|
+
"shortName": "filecoin",
|
|
1233
|
+
"slip44": 461,
|
|
1234
|
+
},
|
|
1235
|
+
"calibration": {
|
|
1236
|
+
"chain": "FIL",
|
|
1237
|
+
"chainId": 314159,
|
|
1238
|
+
"ens": None,
|
|
1239
|
+
"explorers": [
|
|
1240
|
+
{
|
|
1241
|
+
"name": "Filscan - Calibration",
|
|
1242
|
+
"standard": "none",
|
|
1243
|
+
"url": "https://calibration.filscan.io",
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
"name": "Filscout - Calibration",
|
|
1247
|
+
"standard": "none",
|
|
1248
|
+
"url": "https://calibration.filscout.com/en",
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
"name": "Filfox - Calibration",
|
|
1252
|
+
"standard": "none",
|
|
1253
|
+
"url": "https://calibration.filfox.info",
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"name": "Glif Explorer - Calibration",
|
|
1257
|
+
"standard": "none",
|
|
1258
|
+
"url": "https://explorer.glif.io/?network=calibration",
|
|
1259
|
+
},
|
|
1260
|
+
{"name": "Beryx", "standard": "none", "url": "https://beryx.zondax.ch"},
|
|
1261
|
+
],
|
|
1262
|
+
"faucets": ["https://faucet.calibration.fildev.network/"],
|
|
1263
|
+
"features": None,
|
|
1264
|
+
"icon": "filecoin",
|
|
1265
|
+
"infoURL": "https://filecoin.io",
|
|
1266
|
+
"name": "Filecoin - Calibration testnet",
|
|
1267
|
+
"nativeCurrency": {
|
|
1268
|
+
"decimals": 18,
|
|
1269
|
+
"name": "testnet filecoin",
|
|
1270
|
+
"symbol": "tFIL",
|
|
1271
|
+
},
|
|
1272
|
+
"networkId": 314159,
|
|
1273
|
+
"rpc": [
|
|
1274
|
+
"https://api.calibration.node.glif.io/rpc/v1",
|
|
1275
|
+
"https://rpc.ankr.com/filecoin_testnet",
|
|
1276
|
+
"https://filecoin-calibration.chainstacklabs.com/rpc/v1",
|
|
1277
|
+
"https://filecoin-calibration.chainup.net/rpc/v1",
|
|
1278
|
+
"https://calibration.filfox.info/rpc/v1",
|
|
1279
|
+
"https://filecoin-calibration.drpc.org",
|
|
1280
|
+
],
|
|
1281
|
+
"shortName": "filecoin-calibration",
|
|
1282
|
+
"slip44": 1,
|
|
1283
|
+
},
|
|
1284
|
+
},
|
|
1185
1285
|
"flow-evm": {
|
|
1186
1286
|
"mainnet": {
|
|
1187
1287
|
"chain": "Flow",
|
|
@@ -1198,7 +1298,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
|
|
|
1198
1298
|
"features": None,
|
|
1199
1299
|
"icon": "flowevm",
|
|
1200
1300
|
"infoURL": "https://developers.flow.com/evm/about",
|
|
1201
|
-
"name": "EVM
|
|
1301
|
+
"name": "Flow EVM Mainnet",
|
|
1202
1302
|
"nativeCurrency": {"decimals": 18, "name": "FLOW", "symbol": "FLOW"},
|
|
1203
1303
|
"networkId": 747,
|
|
1204
1304
|
"rpc": ["https://mainnet.evm.nodes.onflow.org"],
|
|
@@ -1220,7 +1320,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
|
|
|
1220
1320
|
"features": None,
|
|
1221
1321
|
"icon": "flowevm",
|
|
1222
1322
|
"infoURL": "https://developers.flow.com/evm/about",
|
|
1223
|
-
"name": "EVM
|
|
1323
|
+
"name": "Flow EVM Testnet",
|
|
1224
1324
|
"nativeCurrency": {"decimals": 18, "name": "FLOW", "symbol": "FLOW"},
|
|
1225
1325
|
"networkId": 545,
|
|
1226
1326
|
"rpc": ["https://testnet.evm.nodes.onflow.org"],
|
|
@@ -1251,7 +1351,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
|
|
|
1251
1351
|
"symbol": "frxETH",
|
|
1252
1352
|
},
|
|
1253
1353
|
"networkId": 252,
|
|
1254
|
-
"rpc": ["https://rpc.frax.com"],
|
|
1354
|
+
"rpc": ["https://rpc.frax.com", "https://fraxtal-rpc.publicnode.com"],
|
|
1255
1355
|
"shortName": "fraxtal",
|
|
1256
1356
|
"slip44": None,
|
|
1257
1357
|
},
|
|
@@ -1277,7 +1377,10 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
|
|
|
1277
1377
|
"symbol": "frxETH",
|
|
1278
1378
|
},
|
|
1279
1379
|
"networkId": 2522,
|
|
1280
|
-
"rpc": [
|
|
1380
|
+
"rpc": [
|
|
1381
|
+
"https://rpc.testnet.frax.com",
|
|
1382
|
+
"https://fraxtal-holesky-rpc.publicnode.com",
|
|
1383
|
+
],
|
|
1281
1384
|
"shortName": "fraxtal-testnet",
|
|
1282
1385
|
"slip44": 1,
|
|
1283
1386
|
},
|
|
@@ -1714,7 +1817,11 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
|
|
|
1714
1817
|
"name": "Metis Andromeda Mainnet",
|
|
1715
1818
|
"nativeCurrency": {"decimals": 18, "name": "Metis", "symbol": "METIS"},
|
|
1716
1819
|
"networkId": 1088,
|
|
1717
|
-
"rpc": [
|
|
1820
|
+
"rpc": [
|
|
1821
|
+
"https://andromeda.metis.io/?owner=1088",
|
|
1822
|
+
"https://metis.drpc.org",
|
|
1823
|
+
"https://metis-rpc.publicnode.com",
|
|
1824
|
+
],
|
|
1718
1825
|
"shortName": "metis-andromeda",
|
|
1719
1826
|
"slip44": None,
|
|
1720
1827
|
},
|
|
@@ -2328,12 +2435,16 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
|
|
|
2328
2435
|
"symbol": "BONE",
|
|
2329
2436
|
},
|
|
2330
2437
|
"networkId": 109,
|
|
2331
|
-
"rpc": [
|
|
2438
|
+
"rpc": [
|
|
2439
|
+
"https://www.shibrpc.com",
|
|
2440
|
+
"https://rpc.shibrpc.com",
|
|
2441
|
+
"https://shib.nownodes.io",
|
|
2442
|
+
],
|
|
2332
2443
|
"shortName": "shibariumecosystem",
|
|
2333
2444
|
"slip44": None,
|
|
2334
2445
|
},
|
|
2335
2446
|
"puppynet": {
|
|
2336
|
-
"chain": "Puppynet
|
|
2447
|
+
"chain": "Puppynet",
|
|
2337
2448
|
"chainId": 157,
|
|
2338
2449
|
"ens": None,
|
|
2339
2450
|
"explorers": [
|
|
@@ -2343,11 +2454,11 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
|
|
|
2343
2454
|
"url": "https://puppyscan.shib.io",
|
|
2344
2455
|
}
|
|
2345
2456
|
],
|
|
2346
|
-
"faucets": ["https://
|
|
2457
|
+
"faucets": ["https://shibarium.shib.io/faucet"],
|
|
2347
2458
|
"features": None,
|
|
2348
2459
|
"icon": "shibarium",
|
|
2349
2460
|
"infoURL": "https://shibariumecosystem.com",
|
|
2350
|
-
"name": "Puppynet
|
|
2461
|
+
"name": "Puppynet",
|
|
2351
2462
|
"nativeCurrency": {"decimals": 18, "name": "BONE", "symbol": "BONE"},
|
|
2352
2463
|
"networkId": 157,
|
|
2353
2464
|
"rpc": ["https://puppynet.shibrpc.com"],
|
|
@@ -2474,18 +2585,62 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
|
|
|
2474
2585
|
{
|
|
2475
2586
|
"name": "Blockscout Minato explorer",
|
|
2476
2587
|
"standard": "EIP3091",
|
|
2477
|
-
"url": "https://
|
|
2588
|
+
"url": "https://soneium-minato.blockscout.com",
|
|
2478
2589
|
}
|
|
2479
2590
|
],
|
|
2480
2591
|
"faucets": [],
|
|
2481
2592
|
"features": None,
|
|
2482
2593
|
"icon": "minato",
|
|
2483
2594
|
"infoURL": "https://soneium.org",
|
|
2484
|
-
"name": "Minato",
|
|
2595
|
+
"name": "Soneium Testnet Minato",
|
|
2485
2596
|
"nativeCurrency": {"decimals": 18, "name": "Ether", "symbol": "ETH"},
|
|
2486
2597
|
"networkId": 1946,
|
|
2487
2598
|
"rpc": ["https://rpc.minato.soneium.org"],
|
|
2488
|
-
"shortName": "minato",
|
|
2599
|
+
"shortName": "soneium-minato",
|
|
2600
|
+
"slip44": None,
|
|
2601
|
+
},
|
|
2602
|
+
},
|
|
2603
|
+
"sonic": {
|
|
2604
|
+
"mainnet": {
|
|
2605
|
+
"chain": "sonic",
|
|
2606
|
+
"chainId": 146,
|
|
2607
|
+
"ens": None,
|
|
2608
|
+
"explorers": [
|
|
2609
|
+
{
|
|
2610
|
+
"icon": "sonic",
|
|
2611
|
+
"name": "sonic",
|
|
2612
|
+
"standard": "none",
|
|
2613
|
+
"url": "https://explorer.soniclabs.com",
|
|
2614
|
+
}
|
|
2615
|
+
],
|
|
2616
|
+
"faucets": [],
|
|
2617
|
+
"features": [{"name": "EIP155"}],
|
|
2618
|
+
"icon": "sonic",
|
|
2619
|
+
"infoURL": "https://soniclabs.com",
|
|
2620
|
+
"name": "Sonic Mainnet",
|
|
2621
|
+
"nativeCurrency": {"decimals": 18, "name": "Sonic", "symbol": "S"},
|
|
2622
|
+
"networkId": 146,
|
|
2623
|
+
"rpc": ["https://rpc.soniclabs.com", "https://sonic-rpc.publicnode.com"],
|
|
2624
|
+
"shortName": "sonic",
|
|
2625
|
+
"slip44": None,
|
|
2626
|
+
},
|
|
2627
|
+
"blaze": {
|
|
2628
|
+
"chain": "blaze-testnet",
|
|
2629
|
+
"chainId": 57054,
|
|
2630
|
+
"ens": None,
|
|
2631
|
+
"explorers": [],
|
|
2632
|
+
"faucets": ["https://blaze.soniclabs.com/account"],
|
|
2633
|
+
"features": [{"name": "EIP155"}],
|
|
2634
|
+
"icon": "sonic",
|
|
2635
|
+
"infoURL": "https://blaze.soniclabs.com",
|
|
2636
|
+
"name": "Sonic Blaze Testnet",
|
|
2637
|
+
"nativeCurrency": {"decimals": 18, "name": "Sonic", "symbol": "S"},
|
|
2638
|
+
"networkId": 57054,
|
|
2639
|
+
"rpc": [
|
|
2640
|
+
"https://rpc.blaze.soniclabs.com",
|
|
2641
|
+
"https://sonic-blaze-rpc.publicnode.com",
|
|
2642
|
+
],
|
|
2643
|
+
"shortName": "blaze",
|
|
2489
2644
|
"slip44": None,
|
|
2490
2645
|
},
|
|
2491
2646
|
},
|
|
@@ -2510,7 +2665,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
|
|
|
2510
2665
|
"features": None,
|
|
2511
2666
|
"icon": "taiko",
|
|
2512
2667
|
"infoURL": "https://taiko.xyz",
|
|
2513
|
-
"name": "Taiko
|
|
2668
|
+
"name": "Taiko Alethia",
|
|
2514
2669
|
"nativeCurrency": {"decimals": 18, "name": "Ether", "symbol": "ETH"},
|
|
2515
2670
|
"networkId": 167000,
|
|
2516
2671
|
"rpc": [
|
|
@@ -2540,7 +2695,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
|
|
|
2540
2695
|
"features": None,
|
|
2541
2696
|
"icon": "taiko",
|
|
2542
2697
|
"infoURL": "https://taiko.xyz",
|
|
2543
|
-
"name": "Taiko Hekla
|
|
2698
|
+
"name": "Taiko Hekla",
|
|
2544
2699
|
"nativeCurrency": {"decimals": 18, "name": "Ether", "symbol": "ETH"},
|
|
2545
2700
|
"networkId": 167009,
|
|
2546
2701
|
"rpc": [
|
|
@@ -2570,7 +2725,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
|
|
|
2570
2725
|
],
|
|
2571
2726
|
"faucets": [],
|
|
2572
2727
|
"features": None,
|
|
2573
|
-
"icon":
|
|
2728
|
+
"icon": "unichain-testnet",
|
|
2574
2729
|
"infoURL": "https://unichain.org",
|
|
2575
2730
|
"name": "Unichain Sepolia Testnet",
|
|
2576
2731
|
"nativeCurrency": {
|
|
@@ -2579,7 +2734,10 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
|
|
|
2579
2734
|
"symbol": "ETH",
|
|
2580
2735
|
},
|
|
2581
2736
|
"networkId": 1301,
|
|
2582
|
-
"rpc": [
|
|
2737
|
+
"rpc": [
|
|
2738
|
+
"https://sepolia.unichain.org",
|
|
2739
|
+
"https://unichain-sepolia-rpc.publicnode.com",
|
|
2740
|
+
],
|
|
2583
2741
|
"shortName": "unichain-sep",
|
|
2584
2742
|
"slip44": None,
|
|
2585
2743
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: evmchains
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
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
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["setuptools>=
|
|
2
|
+
requires = ["setuptools>=70.2.0", "wheel", "setuptools_scm[toml]>=5.0"]
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
4
4
|
|
|
5
5
|
[project]
|
|
@@ -25,6 +25,7 @@ classifiers = [
|
|
|
25
25
|
"Programming Language :: Python :: 3.10",
|
|
26
26
|
"Programming Language :: Python :: 3.11",
|
|
27
27
|
"Programming Language :: Python :: 3.12",
|
|
28
|
+
"Programming Language :: Python :: 3.13",
|
|
28
29
|
]
|
|
29
30
|
dependencies = [
|
|
30
31
|
"pydantic>=2.5.3,<3",
|
|
@@ -100,6 +100,10 @@ CHAIN_IDS = {
|
|
|
100
100
|
"mainnet": 250,
|
|
101
101
|
"testnet": 4002,
|
|
102
102
|
},
|
|
103
|
+
"filecoin": {
|
|
104
|
+
"mainnet": 314,
|
|
105
|
+
"calibration": 314159,
|
|
106
|
+
},
|
|
103
107
|
"flow-evm": {
|
|
104
108
|
"mainnet": 747,
|
|
105
109
|
"testnet": 545,
|
|
@@ -190,6 +194,10 @@ CHAIN_IDS = {
|
|
|
190
194
|
"soneium": {
|
|
191
195
|
"minato": 1946,
|
|
192
196
|
},
|
|
197
|
+
"sonic": {
|
|
198
|
+
"mainnet": 146,
|
|
199
|
+
"blaze": 57054,
|
|
200
|
+
},
|
|
193
201
|
"taiko": {
|
|
194
202
|
"mainnet": 167000,
|
|
195
203
|
"hekla": 167009,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|