eth-chainlist 0.0.831 → 0.0.832
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.
- package/CHANGELOG.md +8 -0
- package/data/chain.js +59 -35
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.832 (2026-09-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.831 ([d3f5de3](https://github.com/poowf/eth-chainlist/commit/d3f5de3cbbdf17816877cb2aaf4c2fa83a68dbe6))
|
|
9
|
+
* update chain data ([fd1edb5](https://github.com/poowf/eth-chainlist/commit/fd1edb5cc23258cd9adae10b7b72cd5d0f34284a))
|
|
10
|
+
|
|
3
11
|
### 0.0.831 (2026-09-09)
|
|
4
12
|
|
|
5
13
|
|
package/data/chain.js
CHANGED
|
@@ -21,7 +21,8 @@ const chainArray = [
|
|
|
21
21
|
'https://rpc.mevblocker.io/fullprivacy',
|
|
22
22
|
'https://eth.drpc.org',
|
|
23
23
|
'wss://eth.drpc.org',
|
|
24
|
-
'https://api.securerpc.com/v1'
|
|
24
|
+
'https://api.securerpc.com/v1',
|
|
25
|
+
'https://xrpc.cl/eth'
|
|
25
26
|
],
|
|
26
27
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
27
28
|
faucets: [],
|
|
@@ -44,12 +45,6 @@ const chainArray = [
|
|
|
44
45
|
icon: 'blockscout',
|
|
45
46
|
standard: 'EIP3091'
|
|
46
47
|
},
|
|
47
|
-
{
|
|
48
|
-
name: 'dexguru',
|
|
49
|
-
url: 'https://ethereum.dex.guru',
|
|
50
|
-
icon: 'dexguru',
|
|
51
|
-
standard: 'EIP3091'
|
|
52
|
-
},
|
|
53
48
|
{
|
|
54
49
|
name: 'Routescan',
|
|
55
50
|
url: 'https://ethereum.routescan.io',
|
|
@@ -260,7 +255,8 @@ const chainArray = [
|
|
|
260
255
|
'https://optimism.gateway.tenderly.co',
|
|
261
256
|
'wss://optimism.gateway.tenderly.co',
|
|
262
257
|
'https://optimism.drpc.org',
|
|
263
|
-
'wss://optimism.drpc.org'
|
|
258
|
+
'wss://optimism.drpc.org',
|
|
259
|
+
'https://xrpc.cl/optimism'
|
|
264
260
|
],
|
|
265
261
|
faucets: [],
|
|
266
262
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
@@ -279,17 +275,6 @@ const chainArray = [
|
|
|
279
275
|
url: 'https://optimism.blockscout.com',
|
|
280
276
|
icon: 'blockscout',
|
|
281
277
|
standard: 'EIP3091'
|
|
282
|
-
},
|
|
283
|
-
{
|
|
284
|
-
name: 'dexguru',
|
|
285
|
-
url: 'https://optimism.dex.guru',
|
|
286
|
-
icon: 'dexguru',
|
|
287
|
-
standard: 'EIP3091'
|
|
288
|
-
},
|
|
289
|
-
{
|
|
290
|
-
name: 'Routescan',
|
|
291
|
-
url: 'https://mainnet.superscan.network',
|
|
292
|
-
standard: 'EIP3091'
|
|
293
278
|
}
|
|
294
279
|
]
|
|
295
280
|
},
|
|
@@ -1224,7 +1209,8 @@ const chainArray = [
|
|
|
1224
1209
|
'https://bsc-rpc.publicnode.com',
|
|
1225
1210
|
'https://bsc-rpc-public.chainpulse.cc',
|
|
1226
1211
|
'wss://bsc-rpc.publicnode.com',
|
|
1227
|
-
'wss://bsc-ws-node.nariox.org'
|
|
1212
|
+
'wss://bsc-ws-node.nariox.org',
|
|
1213
|
+
'https://xrpc.cl/bsc'
|
|
1228
1214
|
],
|
|
1229
1215
|
faucets: [],
|
|
1230
1216
|
nativeCurrency: { name: 'BNB Chain Native Token', symbol: 'BNB', decimals: 18 },
|
|
@@ -2900,7 +2886,8 @@ const chainArray = [
|
|
|
2900
2886
|
'wss://polygon.gateway.tenderly.co',
|
|
2901
2887
|
'https://rpc.satelink.network/rpc/polygon',
|
|
2902
2888
|
'https://rpcfree.com/polygon-rpc',
|
|
2903
|
-
'wss://rpc.satelink.network/rpc/ws/polygon'
|
|
2889
|
+
'wss://rpc.satelink.network/rpc/ws/polygon',
|
|
2890
|
+
'https://xrpc.cl/polygon'
|
|
2904
2891
|
],
|
|
2905
2892
|
faucets: [],
|
|
2906
2893
|
nativeCurrency: { name: 'POL', symbol: 'POL', decimals: 18 },
|
|
@@ -9040,6 +9027,25 @@ const chainArray = [
|
|
|
9040
9027
|
}
|
|
9041
9028
|
]
|
|
9042
9029
|
},
|
|
9030
|
+
{
|
|
9031
|
+
name: 'Pione BOS Chain Mainnet',
|
|
9032
|
+
chain: 'POB',
|
|
9033
|
+
icon: 'pob',
|
|
9034
|
+
rpc: [ 'https://rpc.pionescan.com' ],
|
|
9035
|
+
faucets: [],
|
|
9036
|
+
nativeCurrency: { name: 'Pione BOS Chain', symbol: 'POB', decimals: 18 },
|
|
9037
|
+
infoURL: 'https://pionechain.com',
|
|
9038
|
+
shortName: 'pob',
|
|
9039
|
+
chainId: 739,
|
|
9040
|
+
networkId: 739,
|
|
9041
|
+
explorers: [
|
|
9042
|
+
{
|
|
9043
|
+
name: 'Pione BOS Chain Explorer',
|
|
9044
|
+
url: 'https://pionescan.com',
|
|
9045
|
+
standard: 'EIP3091'
|
|
9046
|
+
}
|
|
9047
|
+
]
|
|
9048
|
+
},
|
|
9043
9049
|
{
|
|
9044
9050
|
name: 'Canto Testnet',
|
|
9045
9051
|
chain: 'Canto Tesnet',
|
|
@@ -11629,23 +11635,18 @@ const chainArray = [
|
|
|
11629
11635
|
]
|
|
11630
11636
|
},
|
|
11631
11637
|
{
|
|
11632
|
-
name: 'Vordium',
|
|
11638
|
+
name: 'Vordium Legacy',
|
|
11633
11639
|
chain: 'VORD',
|
|
11634
11640
|
icon: 'vordium',
|
|
11635
|
-
rpc: [
|
|
11641
|
+
rpc: [],
|
|
11636
11642
|
faucets: [],
|
|
11637
11643
|
nativeCurrency: { name: 'Vordium', symbol: 'VORD', decimals: 18 },
|
|
11638
11644
|
infoURL: 'https://vordium.com',
|
|
11639
|
-
shortName: 'vord',
|
|
11645
|
+
shortName: 'vord-legacy',
|
|
11640
11646
|
chainId: 1110,
|
|
11641
11647
|
networkId: 1110,
|
|
11642
|
-
|
|
11643
|
-
|
|
11644
|
-
name: 'vordscan',
|
|
11645
|
-
url: 'https://vordscan.io',
|
|
11646
|
-
standard: 'EIP3091'
|
|
11647
|
-
}
|
|
11648
|
-
]
|
|
11648
|
+
status: 'deprecated',
|
|
11649
|
+
explorers: []
|
|
11649
11650
|
},
|
|
11650
11651
|
{
|
|
11651
11652
|
name: 'WEMIX3.0 Mainnet',
|
|
@@ -27216,7 +27217,8 @@ const chainArray = [
|
|
|
27216
27217
|
'wss://base-rpc.publicnode.com',
|
|
27217
27218
|
'https://rpcfree.com/base-rpc',
|
|
27218
27219
|
'https://rpc.baseazul.dev',
|
|
27219
|
-
'https://rpc.satelink.network/rpc/base'
|
|
27220
|
+
'https://rpc.satelink.network/rpc/base',
|
|
27221
|
+
'https://xrpc.cl/base'
|
|
27220
27222
|
],
|
|
27221
27223
|
faucets: [],
|
|
27222
27224
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
@@ -36153,7 +36155,8 @@ const chainArray = [
|
|
|
36153
36155
|
'https://arbitrum-one-rpc.publicnode.com',
|
|
36154
36156
|
'wss://arbitrum-one-rpc.publicnode.com',
|
|
36155
36157
|
'https://rpcfree.com/arbitrum-rpc',
|
|
36156
|
-
'https://rpc.satelink.network/rpc/arbitrum'
|
|
36158
|
+
'https://rpc.satelink.network/rpc/arbitrum',
|
|
36159
|
+
'https://xrpc.cl/arbitrum'
|
|
36157
36160
|
],
|
|
36158
36161
|
faucets: [],
|
|
36159
36162
|
explorers: [
|
|
@@ -36540,7 +36543,8 @@ const chainArray = [
|
|
|
36540
36543
|
rpc: [
|
|
36541
36544
|
'https://api.avax.network/ext/bc/C/rpc',
|
|
36542
36545
|
'https://avalanche-c-chain-rpc.publicnode.com',
|
|
36543
|
-
'wss://avalanche-c-chain-rpc.publicnode.com'
|
|
36546
|
+
'wss://avalanche-c-chain-rpc.publicnode.com',
|
|
36547
|
+
'https://xrpc.cl/avalanche'
|
|
36544
36548
|
],
|
|
36545
36549
|
features: [ { name: 'EIP1559' } ],
|
|
36546
36550
|
faucets: [],
|
|
@@ -43153,6 +43157,25 @@ const chainArray = [
|
|
|
43153
43157
|
}
|
|
43154
43158
|
]
|
|
43155
43159
|
},
|
|
43160
|
+
{
|
|
43161
|
+
name: 'Vordium',
|
|
43162
|
+
chain: 'VORD',
|
|
43163
|
+
icon: 'vordium',
|
|
43164
|
+
rpc: [ 'https://rpc.vordium.com' ],
|
|
43165
|
+
faucets: [],
|
|
43166
|
+
nativeCurrency: { name: 'Vordium', symbol: 'VORD', decimals: 18 },
|
|
43167
|
+
infoURL: 'https://vordium.com',
|
|
43168
|
+
shortName: 'vord',
|
|
43169
|
+
chainId: 101101,
|
|
43170
|
+
networkId: 101101,
|
|
43171
|
+
explorers: [
|
|
43172
|
+
{
|
|
43173
|
+
name: 'vordscan',
|
|
43174
|
+
url: 'https://vordscan.io',
|
|
43175
|
+
standard: 'EIP3091'
|
|
43176
|
+
}
|
|
43177
|
+
]
|
|
43178
|
+
},
|
|
43156
43179
|
{
|
|
43157
43180
|
name: 'Creditcoin',
|
|
43158
43181
|
chain: 'CTC',
|
|
@@ -52027,7 +52050,8 @@ const chainArray = [
|
|
|
52027
52050
|
'wss://ethereum-sepolia-rpc.publicnode.com',
|
|
52028
52051
|
'https://sepolia.drpc.org',
|
|
52029
52052
|
'wss://sepolia.drpc.org',
|
|
52030
|
-
'https://eth-sepolia.g.alchemy.com/v2/WddzdzI2o9S3COdT73d5w6AIogbKq4X-'
|
|
52053
|
+
'https://eth-sepolia.g.alchemy.com/v2/WddzdzI2o9S3COdT73d5w6AIogbKq4X-',
|
|
52054
|
+
'https://xrpc.cl/sepolia'
|
|
52031
52055
|
],
|
|
52032
52056
|
faucets: [
|
|
52033
52057
|
'http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'
|