evmchains 0.0.6__tar.gz → 0.0.8__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: evmchains
3
- Version: 0.0.6
3
+ Version: 0.0.8
4
4
  Summary: Packaged metadata on Ethereum Virtual Machine (EVM) chains
5
5
  License: Apache License
6
6
  Version 2.0, January 2004
@@ -222,7 +222,7 @@ Classifier: Programming Language :: Python :: 3.12
222
222
  Requires-Python: >=3.8
223
223
  Description-Content-Type: text/markdown
224
224
  License-File: LICENSE
225
- Requires-Dist: pydantic~=2.5.3
225
+ Requires-Dist: pydantic<3,>=2.5.3
226
226
  Provides-Extra: dev
227
227
  Requires-Dist: black~=23.12.1; extra == "dev"
228
228
  Requires-Dist: build~=1.0.3; extra == "dev"
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '0.0.6'
16
- __version_tuple__ = version_tuple = (0, 0, 6)
15
+ __version__ = version = '0.0.8'
16
+ __version_tuple__ = version_tuple = (0, 0, 8)
@@ -1,5 +1,5 @@
1
1
  # This file is auto-generated by scripts/update.py
2
- # 2024-04-09 14:08:35.326760
2
+ # 2024-05-17 16:06:29.822636
3
3
  # Do not edit this file directly.
4
4
  from typing import Any, Dict
5
5
 
@@ -490,6 +490,7 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
490
490
  "https://sepolia.gateway.tenderly.co",
491
491
  "https://ethereum-sepolia-rpc.publicnode.com",
492
492
  "https://sepolia.drpc.org",
493
+ "https://rpc-sepolia.rockx.com",
493
494
  ],
494
495
  "shortName": "sep",
495
496
  "slip44": 1,
@@ -940,4 +941,67 @@ PUBLIC_CHAIN_META: Dict[str, Dict[str, Dict[str, Any]]] = {
940
941
  "slip44": 1,
941
942
  },
942
943
  },
944
+ "rootstock": {
945
+ "mainnet": {
946
+ "chain": "Rootstock",
947
+ "chainId": 30,
948
+ "ens": None,
949
+ "explorers": [
950
+ {
951
+ "name": "Rootstock Explorer",
952
+ "standard": "EIP3091",
953
+ "url": "https://explorer.rsk.co",
954
+ },
955
+ {
956
+ "icon": "blockscout",
957
+ "name": "blockscout",
958
+ "standard": "EIP3091",
959
+ "url": "https://rootstock.blockscout.com",
960
+ },
961
+ ],
962
+ "faucets": [],
963
+ "features": None,
964
+ "icon": "rootstock",
965
+ "infoURL": "https://rootstock.io",
966
+ "name": "Rootstock Mainnet",
967
+ "nativeCurrency": {
968
+ "decimals": 18,
969
+ "name": "Smart Bitcoin",
970
+ "symbol": "RBTC",
971
+ },
972
+ "networkId": 30,
973
+ "rpc": ["https://public-node.rsk.co", "https://mycrypto.rsk.co"],
974
+ "shortName": "rsk",
975
+ "slip44": 137,
976
+ },
977
+ "testnet": {
978
+ "chain": "Rootstock",
979
+ "chainId": 31,
980
+ "ens": None,
981
+ "explorers": [
982
+ {
983
+ "name": "RSK Testnet Explorer",
984
+ "standard": "EIP3091",
985
+ "url": "https://explorer.testnet.rsk.co",
986
+ }
987
+ ],
988
+ "faucets": ["https://faucet.rsk.co/"],
989
+ "features": None,
990
+ "icon": "rootstock",
991
+ "infoURL": "https://rootstock.io",
992
+ "name": "Rootstock Testnet",
993
+ "nativeCurrency": {
994
+ "decimals": 18,
995
+ "name": "Testnet Smart Bitcoin",
996
+ "symbol": "tRBTC",
997
+ },
998
+ "networkId": 31,
999
+ "rpc": [
1000
+ "https://public-node.testnet.rsk.co",
1001
+ "https://mycrypto.testnet.rsk.co",
1002
+ ],
1003
+ "shortName": "trsk",
1004
+ "slip44": 1,
1005
+ },
1006
+ },
943
1007
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: evmchains
3
- Version: 0.0.6
3
+ Version: 0.0.8
4
4
  Summary: Packaged metadata on Ethereum Virtual Machine (EVM) chains
5
5
  License: Apache License
6
6
  Version 2.0, January 2004
@@ -222,7 +222,7 @@ Classifier: Programming Language :: Python :: 3.12
222
222
  Requires-Python: >=3.8
223
223
  Description-Content-Type: text/markdown
224
224
  License-File: LICENSE
225
- Requires-Dist: pydantic~=2.5.3
225
+ Requires-Dist: pydantic<3,>=2.5.3
226
226
  Provides-Extra: dev
227
227
  Requires-Dist: black~=23.12.1; extra == "dev"
228
228
  Requires-Dist: build~=1.0.3; extra == "dev"
@@ -1,4 +1,4 @@
1
- pydantic~=2.5.3
1
+ pydantic<3,>=2.5.3
2
2
 
3
3
  [dev]
4
4
  black~=23.12.1
@@ -26,7 +26,7 @@ classifiers = [
26
26
  "Programming Language :: Python :: 3.12",
27
27
  ]
28
28
  dependencies = [
29
- "pydantic~=2.5.3",
29
+ "pydantic>=2.5.3,<3",
30
30
  ]
31
31
  dynamic = ["version"]
32
32
 
@@ -76,6 +76,10 @@ CHAIN_IDS = {
76
76
  "mainnet": 59144,
77
77
  "sepolia": 59141,
78
78
  },
79
+ "rootstock": {
80
+ "mainnet": 30,
81
+ "testnet": 31,
82
+ },
79
83
  }
80
84
 
81
85
  pp = PrettyPrinter(indent=4)
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