eth-chainlist 0.0.529 → 0.0.531
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 +16 -0
- package/data/chain.js +74 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.531 (2024-11-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.530 ([a3fab41](https://github.com/poowf/eth-chainlist/commit/a3fab41a37fc81cb2b90bf21b8926a1d6b583de7))
|
|
9
|
+
* update chain data ([af13943](https://github.com/poowf/eth-chainlist/commit/af13943f0c9f8d2ef71b519c028bc9c292d921e7))
|
|
10
|
+
|
|
11
|
+
### 0.0.530 (2024-11-03)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.529 ([088330a](https://github.com/poowf/eth-chainlist/commit/088330a957ebae4c32ba8210b75c4c8fd528d8c2))
|
|
17
|
+
* update chain data ([6ca2e10](https://github.com/poowf/eth-chainlist/commit/6ca2e10c1c5cbc499d359b206688c8e1de826001))
|
|
18
|
+
|
|
3
19
|
### 0.0.529 (2024-11-02)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -12193,6 +12193,30 @@ const chainArray = [
|
|
|
12193
12193
|
}
|
|
12194
12194
|
]
|
|
12195
12195
|
},
|
|
12196
|
+
{
|
|
12197
|
+
name: 'PlayBlock',
|
|
12198
|
+
chain: 'playblock',
|
|
12199
|
+
rpc: [ 'https://rpc.playblock.io', 'wss://ws.playblock.io' ],
|
|
12200
|
+
faucets: [],
|
|
12201
|
+
nativeCurrency: { name: 'PlayBlock', symbol: 'PBG', decimals: 18 },
|
|
12202
|
+
infoURL: 'https://www.playnance.com',
|
|
12203
|
+
shortName: 'playblock',
|
|
12204
|
+
chainId: 1829,
|
|
12205
|
+
slip44: 60,
|
|
12206
|
+
networkId: 1829,
|
|
12207
|
+
explorers: [
|
|
12208
|
+
{
|
|
12209
|
+
name: 'PlayBlock',
|
|
12210
|
+
url: 'https://explorer.playblock.io',
|
|
12211
|
+
standard: 'none'
|
|
12212
|
+
}
|
|
12213
|
+
],
|
|
12214
|
+
parent: {
|
|
12215
|
+
type: 'L2',
|
|
12216
|
+
chain: 'eip155-42161',
|
|
12217
|
+
bridges: [ { url: 'https://bridge.gelato.network/bridge/playblock' } ]
|
|
12218
|
+
}
|
|
12219
|
+
},
|
|
12196
12220
|
{
|
|
12197
12221
|
name: 'HighOctane Subnet',
|
|
12198
12222
|
chain: 'HighOctane Subnet',
|
|
@@ -24907,6 +24931,25 @@ const chainArray = [
|
|
|
24907
24931
|
}
|
|
24908
24932
|
]
|
|
24909
24933
|
},
|
|
24934
|
+
{
|
|
24935
|
+
name: 'LocaChain Mainnet',
|
|
24936
|
+
chain: 'LocaChain',
|
|
24937
|
+
rpc: [ 'https://tgrpntwm.locachain.io' ],
|
|
24938
|
+
faucets: [],
|
|
24939
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
24940
|
+
nativeCurrency: { name: 'LocaCoin', symbol: 'LCC', decimals: 18 },
|
|
24941
|
+
infoURL: 'https://locachain.io',
|
|
24942
|
+
shortName: 'locachain',
|
|
24943
|
+
chainId: 19180,
|
|
24944
|
+
networkId: 19180,
|
|
24945
|
+
explorers: [
|
|
24946
|
+
{
|
|
24947
|
+
name: 'Locachain Explorer',
|
|
24948
|
+
url: 'https://explorer.locachain.io',
|
|
24949
|
+
standard: 'EIP3091'
|
|
24950
|
+
}
|
|
24951
|
+
]
|
|
24952
|
+
},
|
|
24910
24953
|
{
|
|
24911
24954
|
name: 'BlockX Mainnet',
|
|
24912
24955
|
chain: 'blockx',
|
|
@@ -26047,11 +26090,7 @@ const chainArray = [
|
|
|
26047
26090
|
standard: 'none'
|
|
26048
26091
|
}
|
|
26049
26092
|
],
|
|
26050
|
-
parent: {
|
|
26051
|
-
type: 'L2',
|
|
26052
|
-
chain: 'eip155-1',
|
|
26053
|
-
bridges: [ { url: 'https://gateway.boba.network' } ]
|
|
26054
|
-
}
|
|
26093
|
+
parent: { type: 'L2', chain: 'eip155-11155111', bridges: [] }
|
|
26055
26094
|
},
|
|
26056
26095
|
{
|
|
26057
26096
|
name: 'HYCHAIN Testnet',
|
|
@@ -40250,6 +40289,36 @@ const chainArray = [
|
|
|
40250
40289
|
],
|
|
40251
40290
|
parent: { type: 'L2', chain: 'eip155-11155111' }
|
|
40252
40291
|
},
|
|
40292
|
+
{
|
|
40293
|
+
name: 'volmex',
|
|
40294
|
+
title: 'Volmex',
|
|
40295
|
+
chain: 'volmex',
|
|
40296
|
+
rpc: [
|
|
40297
|
+
'https://rpc.volmex.t.raas.gelato.cloud',
|
|
40298
|
+
'wss://ws.volmex.t.raas.gelato.cloud'
|
|
40299
|
+
],
|
|
40300
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
40301
|
+
infoURL: 'https://raas.gelato.network/rollups/details/public/volmex',
|
|
40302
|
+
faucets: [],
|
|
40303
|
+
shortName: 'volmex',
|
|
40304
|
+
chainId: 123420000588,
|
|
40305
|
+
networkId: 123420000588,
|
|
40306
|
+
slip44: 60,
|
|
40307
|
+
explorers: [
|
|
40308
|
+
{
|
|
40309
|
+
name: 'blockscout',
|
|
40310
|
+
url: 'https://volmex.cloud.blockscout.com',
|
|
40311
|
+
standard: 'EIP3091'
|
|
40312
|
+
}
|
|
40313
|
+
],
|
|
40314
|
+
parent: {
|
|
40315
|
+
type: 'L2',
|
|
40316
|
+
chain: 'eip155-84532',
|
|
40317
|
+
bridges: [
|
|
40318
|
+
{ url: 'https://testnet-bridge.gelato.network/bridge/volmex' }
|
|
40319
|
+
]
|
|
40320
|
+
}
|
|
40321
|
+
},
|
|
40253
40322
|
{
|
|
40254
40323
|
name: 'Ntity Mainnet',
|
|
40255
40324
|
chain: 'Ntity',
|