eth-chainlist 0.0.745 → 0.0.747
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 +161 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.747 (2026-04-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.746 ([db3b2fc](https://github.com/poowf/eth-chainlist/commit/db3b2fcf6a1e60cf6eaec4e5221fc20047e43c7f))
|
|
9
|
+
* update chain data ([a16431c](https://github.com/poowf/eth-chainlist/commit/a16431ca9730058881533a9eab9885c57a61a1ad))
|
|
10
|
+
|
|
11
|
+
### 0.0.746 (2026-03-30)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.745 ([f5d7200](https://github.com/poowf/eth-chainlist/commit/f5d72000adfc6adf527df1db809884c606d786b5))
|
|
17
|
+
* update chain data ([53cee66](https://github.com/poowf/eth-chainlist/commit/53cee66b12c69e9c4e5bec0c15441df98035fe29))
|
|
18
|
+
|
|
3
19
|
### 0.0.745 (2026-03-28)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -7988,6 +7988,50 @@ const chainArray = [
|
|
|
7988
7988
|
}
|
|
7989
7989
|
]
|
|
7990
7990
|
},
|
|
7991
|
+
{
|
|
7992
|
+
name: 'BattleChain Mainnet',
|
|
7993
|
+
chain: 'ETH',
|
|
7994
|
+
rpc: [],
|
|
7995
|
+
faucets: [],
|
|
7996
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
7997
|
+
infoURL: 'https://battlechain.com',
|
|
7998
|
+
shortName: 'battlechain',
|
|
7999
|
+
chainId: 626,
|
|
8000
|
+
networkId: 626,
|
|
8001
|
+
icon: 'battlechain',
|
|
8002
|
+
status: 'incubating',
|
|
8003
|
+
explorers: [],
|
|
8004
|
+
parent: {
|
|
8005
|
+
type: 'L2',
|
|
8006
|
+
chain: 'eip155-1',
|
|
8007
|
+
bridges: [ { url: 'https://portal.battlechain.com/bridge' } ]
|
|
8008
|
+
}
|
|
8009
|
+
},
|
|
8010
|
+
{
|
|
8011
|
+
name: 'BattleChain Testnet',
|
|
8012
|
+
chain: 'ETH',
|
|
8013
|
+
rpc: [ 'https://testnet.battlechain.com' ],
|
|
8014
|
+
faucets: [],
|
|
8015
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
8016
|
+
infoURL: 'https://battlechain.com',
|
|
8017
|
+
shortName: 'battlechain-testnet',
|
|
8018
|
+
chainId: 627,
|
|
8019
|
+
networkId: 627,
|
|
8020
|
+
slip44: 1,
|
|
8021
|
+
icon: 'battlechain',
|
|
8022
|
+
explorers: [
|
|
8023
|
+
{
|
|
8024
|
+
name: 'BattleChain Explorer',
|
|
8025
|
+
url: 'https://explorer.testnet.battlechain.com',
|
|
8026
|
+
standard: 'EIP3091'
|
|
8027
|
+
}
|
|
8028
|
+
],
|
|
8029
|
+
parent: {
|
|
8030
|
+
type: 'L2',
|
|
8031
|
+
chain: 'eip155-11155111',
|
|
8032
|
+
bridges: [ { url: 'https://portal.battlechain.com/bridge' } ]
|
|
8033
|
+
}
|
|
8034
|
+
},
|
|
7991
8035
|
{
|
|
7992
8036
|
name: 'NFB Chain',
|
|
7993
8037
|
chain: 'NFB Chain',
|
|
@@ -15805,6 +15849,28 @@ const chainArray = [
|
|
|
15805
15849
|
}
|
|
15806
15850
|
]
|
|
15807
15851
|
},
|
|
15852
|
+
{
|
|
15853
|
+
name: 'ArmaChain Testnet',
|
|
15854
|
+
chain: 'ARMA',
|
|
15855
|
+
rpc: [ 'https://rpc.armascan.io' ],
|
|
15856
|
+
faucets: [ 'https://armafaucet.io' ],
|
|
15857
|
+
nativeCurrency: { name: 'tARMA', symbol: 'tARMA', decimals: 18 },
|
|
15858
|
+
features: [ { name: 'EIP155' } ],
|
|
15859
|
+
infoURL: 'https://armadex.io',
|
|
15860
|
+
shortName: 'arma-testnet',
|
|
15861
|
+
chainId: 2028,
|
|
15862
|
+
networkId: 2028,
|
|
15863
|
+
slip44: 1,
|
|
15864
|
+
icon: 'armachain',
|
|
15865
|
+
explorers: [
|
|
15866
|
+
{
|
|
15867
|
+
name: 'ArmaScan',
|
|
15868
|
+
url: 'https://armascan.io',
|
|
15869
|
+
icon: 'armachain',
|
|
15870
|
+
standard: 'EIP3091'
|
|
15871
|
+
}
|
|
15872
|
+
]
|
|
15873
|
+
},
|
|
15808
15874
|
{
|
|
15809
15875
|
name: 'Centrifuge',
|
|
15810
15876
|
chain: 'CFG',
|
|
@@ -22690,6 +22756,19 @@ const chainArray = [
|
|
|
22690
22756
|
}
|
|
22691
22757
|
]
|
|
22692
22758
|
},
|
|
22759
|
+
{
|
|
22760
|
+
name: 'MegaETH Testnet (Deprecated)',
|
|
22761
|
+
chain: 'ETH',
|
|
22762
|
+
nativeCurrency: { name: 'MegaETH Testnet Ether', symbol: 'ETH', decimals: 18 },
|
|
22763
|
+
rpc: [],
|
|
22764
|
+
faucets: [],
|
|
22765
|
+
infoURL: 'https://testnet.megaeth.com',
|
|
22766
|
+
shortName: 'megatest-deprecated',
|
|
22767
|
+
chainId: 6342,
|
|
22768
|
+
networkId: 6342,
|
|
22769
|
+
slip44: 1,
|
|
22770
|
+
status: 'deprecated'
|
|
22771
|
+
},
|
|
22693
22772
|
{
|
|
22694
22773
|
name: 'MegaETH Testnet',
|
|
22695
22774
|
chain: 'ETH',
|
|
@@ -22698,8 +22777,8 @@ const chainArray = [
|
|
|
22698
22777
|
faucets: [],
|
|
22699
22778
|
infoURL: 'https://testnet.megaeth.com',
|
|
22700
22779
|
shortName: 'megatest',
|
|
22701
|
-
chainId:
|
|
22702
|
-
networkId:
|
|
22780
|
+
chainId: 6343,
|
|
22781
|
+
networkId: 6343,
|
|
22703
22782
|
slip44: 1
|
|
22704
22783
|
},
|
|
22705
22784
|
{
|
|
@@ -37125,6 +37204,27 @@ const chainArray = [
|
|
|
37125
37204
|
nativeCurrency: { name: 'tNXRA', symbol: 'tNXRA', decimals: 18 },
|
|
37126
37205
|
explorers: []
|
|
37127
37206
|
},
|
|
37207
|
+
{
|
|
37208
|
+
name: 'Radius Test Network',
|
|
37209
|
+
chain: 'RADIUS',
|
|
37210
|
+
rpc: [ 'https://rpc.testnet.radiustech.xyz' ],
|
|
37211
|
+
faucets: [ 'https://testnet.radiustech.xyz/wallet/' ],
|
|
37212
|
+
nativeCurrency: { name: 'Radius USD', symbol: 'RUSD', decimals: 18 },
|
|
37213
|
+
infoURL: 'https://testnet.radiustech.xyz',
|
|
37214
|
+
shortName: 'radius-network-testnet',
|
|
37215
|
+
chainId: 72344,
|
|
37216
|
+
networkId: 72344,
|
|
37217
|
+
icon: 'rad',
|
|
37218
|
+
slip44: 1,
|
|
37219
|
+
explorers: [
|
|
37220
|
+
{
|
|
37221
|
+
name: 'Radius Test Network Explorer',
|
|
37222
|
+
url: 'https://testnet.radiustech.xyz',
|
|
37223
|
+
standard: 'none'
|
|
37224
|
+
}
|
|
37225
|
+
],
|
|
37226
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ]
|
|
37227
|
+
},
|
|
37128
37228
|
{
|
|
37129
37229
|
name: 'CAGA crypto Ankara testnet',
|
|
37130
37230
|
chain: 'Ankara',
|
|
@@ -37248,6 +37348,24 @@ const chainArray = [
|
|
|
37248
37348
|
}
|
|
37249
37349
|
]
|
|
37250
37350
|
},
|
|
37351
|
+
{
|
|
37352
|
+
name: 'NV-CHAIN',
|
|
37353
|
+
chain: 'NVC',
|
|
37354
|
+
rpc: [ 'https://rpc.neurovatic.ai/rpc' ],
|
|
37355
|
+
faucets: [ 'https://faucet.neurovatic.ai' ],
|
|
37356
|
+
nativeCurrency: { name: 'NeuroVatic Coin', symbol: 'NVC', decimals: 18 },
|
|
37357
|
+
infoURL: 'https://neurovatic.ai',
|
|
37358
|
+
shortName: 'nvc',
|
|
37359
|
+
chainId: 73790,
|
|
37360
|
+
networkId: 73790,
|
|
37361
|
+
explorers: [
|
|
37362
|
+
{
|
|
37363
|
+
name: 'nvScan',
|
|
37364
|
+
url: 'https://explorer.neurovatic.ai',
|
|
37365
|
+
standard: 'EIP3091'
|
|
37366
|
+
}
|
|
37367
|
+
]
|
|
37368
|
+
},
|
|
37251
37369
|
{
|
|
37252
37370
|
name: 'Energy Web Volta Testnet',
|
|
37253
37371
|
chain: 'Volta',
|
|
@@ -38142,6 +38260,27 @@ const chainArray = [
|
|
|
38142
38260
|
}
|
|
38143
38261
|
]
|
|
38144
38262
|
},
|
|
38263
|
+
{
|
|
38264
|
+
name: 'Pylun Testnet',
|
|
38265
|
+
chain: 'PYLUN',
|
|
38266
|
+
icon: 'pylun',
|
|
38267
|
+
rpc: [ 'https://rpc.pylun.network', 'wss://ws.pylun.network' ],
|
|
38268
|
+
faucets: [ 'https://faucet.pylun.network' ],
|
|
38269
|
+
nativeCurrency: { name: 'PYLUN', symbol: 'PYLUN', decimals: 18 },
|
|
38270
|
+
infoURL: 'https://pylun.network',
|
|
38271
|
+
shortName: 'pylun',
|
|
38272
|
+
chainId: 82716,
|
|
38273
|
+
networkId: 82716,
|
|
38274
|
+
slip44: 60,
|
|
38275
|
+
explorers: [
|
|
38276
|
+
{
|
|
38277
|
+
name: 'PylunScan',
|
|
38278
|
+
url: 'https://explorer.pylun.network',
|
|
38279
|
+
standard: 'EIP3091'
|
|
38280
|
+
}
|
|
38281
|
+
],
|
|
38282
|
+
status: 'active'
|
|
38283
|
+
},
|
|
38145
38284
|
{
|
|
38146
38285
|
name: 'Xprotocol Testnet',
|
|
38147
38286
|
chainId: 83144,
|
|
@@ -45002,6 +45141,26 @@ const chainArray = [
|
|
|
45002
45141
|
}
|
|
45003
45142
|
]
|
|
45004
45143
|
},
|
|
45144
|
+
{
|
|
45145
|
+
name: 'Radius Network',
|
|
45146
|
+
chain: 'RADIUS',
|
|
45147
|
+
rpc: [ 'https://rpc.radiustech.xyz' ],
|
|
45148
|
+
faucets: [],
|
|
45149
|
+
nativeCurrency: { name: 'Radius USD', symbol: 'RUSD', decimals: 18 },
|
|
45150
|
+
infoURL: 'https://network.radiustech.xyz/',
|
|
45151
|
+
shortName: 'radius',
|
|
45152
|
+
chainId: 723487,
|
|
45153
|
+
networkId: 723487,
|
|
45154
|
+
icon: 'rad',
|
|
45155
|
+
explorers: [
|
|
45156
|
+
{
|
|
45157
|
+
name: 'Radius Network Explorer',
|
|
45158
|
+
url: 'https://network.radiustech.xyz',
|
|
45159
|
+
standard: 'none'
|
|
45160
|
+
}
|
|
45161
|
+
],
|
|
45162
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ]
|
|
45163
|
+
},
|
|
45005
45164
|
{
|
|
45006
45165
|
name: 'bokuto',
|
|
45007
45166
|
chain: 'bokuto',
|