eth-chainlist 0.0.576 → 0.0.578
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 +139 -11
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.578 (2025-01-05)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.577 ([e49d769](https://github.com/poowf/eth-chainlist/commit/e49d769d9c53e59cb2c6b3fe055886a3bd8bc00b))
|
9
|
+
* update chain data ([562ed96](https://github.com/poowf/eth-chainlist/commit/562ed96f364ee1c1c2383fee3ba5fc9bb2775f3f))
|
10
|
+
|
11
|
+
### 0.0.577 (2025-01-03)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.576 ([b0f7165](https://github.com/poowf/eth-chainlist/commit/b0f716535a1d53b1c4aa403c337603ae6b7f76bd))
|
17
|
+
* update chain data ([3c540c8](https://github.com/poowf/eth-chainlist/commit/3c540c8b49175083992e5a8a887aea10464be1dc))
|
18
|
+
|
3
19
|
### 0.0.576 (2024-12-31)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -4255,6 +4255,24 @@ const chainArray = [
|
|
4255
4255
|
}
|
4256
4256
|
]
|
4257
4257
|
},
|
4258
|
+
{
|
4259
|
+
name: 'Happychain Testnet',
|
4260
|
+
chainId: 216,
|
4261
|
+
networkId: 216,
|
4262
|
+
chain: 'Happychain Testnet',
|
4263
|
+
rpc: [ 'https://happy-testnet-sepolia.rpc.caldera.xyz/http' ],
|
4264
|
+
faucets: [],
|
4265
|
+
nativeCurrency: { name: 'Happy', symbol: 'HAPPY', decimals: 18 },
|
4266
|
+
shortName: 'happytestnet',
|
4267
|
+
infoURL: 'https://happy-testnet-sepolia.hub.caldera.xyz',
|
4268
|
+
explorers: [
|
4269
|
+
{
|
4270
|
+
name: 'Blockscout',
|
4271
|
+
url: 'https://happy-testnet-sepolia.explorer.caldera.xyz',
|
4272
|
+
standard: 'EIP3091'
|
4273
|
+
}
|
4274
|
+
]
|
4275
|
+
},
|
4258
4276
|
{
|
4259
4277
|
name: 'SiriusNet V2',
|
4260
4278
|
chain: 'SIN2',
|
@@ -5594,6 +5612,31 @@ const chainArray = [
|
|
5594
5612
|
}
|
5595
5613
|
]
|
5596
5614
|
},
|
5615
|
+
{
|
5616
|
+
name: 'WEMblockchain MainNet',
|
5617
|
+
chain: 'WEM',
|
5618
|
+
rpc: [ 'http://rpc.wemblockchain.com' ],
|
5619
|
+
faucets: [],
|
5620
|
+
nativeCurrency: { name: 'WEM Coin', symbol: 'WEM', decimals: 18 },
|
5621
|
+
features: [
|
5622
|
+
{ name: 'EIP155' },
|
5623
|
+
{ name: 'EIP1559' },
|
5624
|
+
{ name: 'Smart Contracts' },
|
5625
|
+
{ name: 'Custom Gas Model' },
|
5626
|
+
{ name: 'Low-Latency Transactions' }
|
5627
|
+
],
|
5628
|
+
infoURL: 'https://worldecomoney.com',
|
5629
|
+
shortName: 'wem',
|
5630
|
+
chainId: 315,
|
5631
|
+
networkId: 315,
|
5632
|
+
explorers: [
|
5633
|
+
{
|
5634
|
+
name: 'wemscan',
|
5635
|
+
url: 'https://wemscan.com',
|
5636
|
+
standard: 'EIP3091'
|
5637
|
+
}
|
5638
|
+
]
|
5639
|
+
},
|
5597
5640
|
{
|
5598
5641
|
name: 'KCC Mainnet',
|
5599
5642
|
chain: 'KCC',
|
@@ -10424,6 +10467,26 @@ const chainArray = [
|
|
10424
10467
|
],
|
10425
10468
|
parent: { type: 'L2', chain: 'eip155-1113' }
|
10426
10469
|
},
|
10470
|
+
{
|
10471
|
+
name: 'Taker Chain Mainnet',
|
10472
|
+
chain: 'Taker',
|
10473
|
+
icon: 'taker',
|
10474
|
+
rpc: [ 'https://rpc-mainnet.taker.xyz' ],
|
10475
|
+
faucets: [],
|
10476
|
+
nativeCurrency: { name: 'Taker', symbol: 'TAKER', decimals: 18 },
|
10477
|
+
infoURL: 'https://www.taker.xyz',
|
10478
|
+
shortName: 'taker',
|
10479
|
+
chainId: 1125,
|
10480
|
+
networkId: 1125,
|
10481
|
+
explorers: [
|
10482
|
+
{
|
10483
|
+
name: 'TakerScan',
|
10484
|
+
url: 'https://explorer.taker.xyz',
|
10485
|
+
icon: 'taker',
|
10486
|
+
standard: 'none'
|
10487
|
+
}
|
10488
|
+
]
|
10489
|
+
},
|
10427
10490
|
{
|
10428
10491
|
name: 'DeFiChain EVM Network Mainnet',
|
10429
10492
|
chain: 'defichain-evm',
|
@@ -20870,6 +20933,19 @@ const chainArray = [
|
|
20870
20933
|
],
|
20871
20934
|
parent: { type: 'L2', chain: 'eip155-1', bridges: [ { url: '' } ] }
|
20872
20935
|
},
|
20936
|
+
{
|
20937
|
+
name: 'Nexera Mainnet',
|
20938
|
+
chain: 'Nexera',
|
20939
|
+
icon: 'nexera',
|
20940
|
+
chainId: 7208,
|
20941
|
+
networkId: 7208,
|
20942
|
+
infoURL: 'https://nexera.network',
|
20943
|
+
shortName: 'nxra-mainnet',
|
20944
|
+
rpc: [ 'https://rpc.nexera.network' ],
|
20945
|
+
faucets: [],
|
20946
|
+
nativeCurrency: { name: 'NXRA', symbol: 'NXRA', decimals: 18 },
|
20947
|
+
explorers: []
|
20948
|
+
},
|
20873
20949
|
{
|
20874
20950
|
name: 'Nibiru Testnet-1',
|
20875
20951
|
chain: 'Nibiru',
|
@@ -27677,6 +27753,24 @@ const chainArray = [
|
|
27677
27753
|
}
|
27678
27754
|
]
|
27679
27755
|
},
|
27756
|
+
{
|
27757
|
+
name: 'Newton Finance Testnet',
|
27758
|
+
chain: 'ETH',
|
27759
|
+
rpc: [ 'https://jp-rpc-testnet-newfi.newpay.io' ],
|
27760
|
+
faucets: [],
|
27761
|
+
nativeCurrency: { name: 'Newton', symbol: 'NEW', decimals: 18 },
|
27762
|
+
infoURL: 'https://newtonproject.org',
|
27763
|
+
shortName: 'tNewFi',
|
27764
|
+
chainId: 26988,
|
27765
|
+
networkId: 26988,
|
27766
|
+
explorers: [
|
27767
|
+
{
|
27768
|
+
name: 'NewFi explorer',
|
27769
|
+
url: 'https://explorer-testnet-newfi.newpay.io',
|
27770
|
+
standard: 'EIP3091'
|
27771
|
+
}
|
27772
|
+
]
|
27773
|
+
},
|
27680
27774
|
{
|
27681
27775
|
name: 'KLAOS Nova',
|
27682
27776
|
title: 'KLAOS Nova Test Chain',
|
@@ -31781,6 +31875,19 @@ const chainArray = [
|
|
31781
31875
|
}
|
31782
31876
|
]
|
31783
31877
|
},
|
31878
|
+
{
|
31879
|
+
name: 'Nexera Testnet',
|
31880
|
+
chain: 'Nexera',
|
31881
|
+
icon: 'nexera',
|
31882
|
+
chainId: 72080,
|
31883
|
+
networkId: 72080,
|
31884
|
+
infoURL: 'https://testnet.nexera.network',
|
31885
|
+
shortName: 'nxra-testnet',
|
31886
|
+
rpc: [ 'https://rpc.testnet.nexera.network' ],
|
31887
|
+
faucets: [ 'https://faucet.nexera.network' ],
|
31888
|
+
nativeCurrency: { name: 'tNXRA', symbol: 'tNXRA', decimals: 18 },
|
31889
|
+
explorers: []
|
31890
|
+
},
|
31784
31891
|
{
|
31785
31892
|
name: 'CAGA crypto Ankara testnet',
|
31786
31893
|
chain: 'Ankara',
|
@@ -36204,7 +36311,7 @@ const chainArray = [
|
|
36204
36311
|
chain: 'Sahara',
|
36205
36312
|
rpc: [ 'https://testnet.saharalabs.ai' ],
|
36206
36313
|
faucets: [],
|
36207
|
-
nativeCurrency: { name: '
|
36314
|
+
nativeCurrency: { name: 'Sahara AI', symbol: 'SAHARA', decimals: 18 },
|
36208
36315
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
36209
36316
|
infoURL: 'https://saharalabs.ai',
|
36210
36317
|
shortName: 'saharatest',
|
@@ -36214,7 +36321,7 @@ const chainArray = [
|
|
36214
36321
|
explorers: [
|
36215
36322
|
{
|
36216
36323
|
name: 'Testnet Scan',
|
36217
|
-
url: 'https://explorer.
|
36324
|
+
url: 'https://testnet-explorer.saharalabs.ai',
|
36218
36325
|
standard: 'EIP3091'
|
36219
36326
|
}
|
36220
36327
|
]
|
@@ -36762,6 +36869,26 @@ const chainArray = [
|
|
36762
36869
|
}
|
36763
36870
|
]
|
36764
36871
|
},
|
36872
|
+
{
|
36873
|
+
name: 'Vector Smart Chain',
|
36874
|
+
chain: 'VSC',
|
36875
|
+
icon: 'vectorsmartgas',
|
36876
|
+
rpc: [ 'https://rpc.vscblockchain.org' ],
|
36877
|
+
features: [ { name: 'EIP155' } ],
|
36878
|
+
faucets: [],
|
36879
|
+
nativeCurrency: { name: 'Vector Smart Gas', symbol: 'VSG', decimals: 18 },
|
36880
|
+
infoURL: 'https://vsgofficial.com',
|
36881
|
+
shortName: 'vsg',
|
36882
|
+
chainId: 420042,
|
36883
|
+
networkId: 420042,
|
36884
|
+
explorers: [
|
36885
|
+
{
|
36886
|
+
name: 'vscexplorer',
|
36887
|
+
url: 'https://explorer.vscblockchain.org',
|
36888
|
+
standard: 'EIP3091'
|
36889
|
+
}
|
36890
|
+
]
|
36891
|
+
},
|
36765
36892
|
{
|
36766
36893
|
name: 'Kekchain',
|
36767
36894
|
chain: 'kek',
|
@@ -37148,20 +37275,21 @@ const chainArray = [
|
|
37148
37275
|
]
|
37149
37276
|
},
|
37150
37277
|
{
|
37151
|
-
name: 'Autonomys Testnet
|
37152
|
-
chain: '
|
37153
|
-
rpc: [ 'https://
|
37278
|
+
name: 'Autonomys Taurus Testnet',
|
37279
|
+
chain: 'autonomys-taurus-testnet',
|
37280
|
+
rpc: [ 'https://auto-evm.taurus.autonomys.xyz/ws' ],
|
37281
|
+
icon: 'autonomys',
|
37154
37282
|
faucets: [],
|
37155
|
-
nativeCurrency: { name: '
|
37283
|
+
nativeCurrency: { name: 'AI3', symbol: 'AI3', decimals: 18 },
|
37156
37284
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
37157
|
-
infoURL: 'https://www.autonomys.
|
37285
|
+
infoURL: 'https://www.autonomys.xyz',
|
37158
37286
|
shortName: 'ATN',
|
37159
37287
|
chainId: 490000,
|
37160
37288
|
networkId: 490000,
|
37161
37289
|
explorers: [
|
37162
37290
|
{
|
37163
|
-
name: '
|
37164
|
-
url: 'https://
|
37291
|
+
name: 'Autonomys Taurus Testnet Explorer',
|
37292
|
+
url: 'https://blockscout.taurus.autonomys.xyz',
|
37165
37293
|
icon: 'blockscout',
|
37166
37294
|
standard: 'EIP3091'
|
37167
37295
|
}
|
@@ -39281,11 +39409,11 @@ const chainArray = [
|
|
39281
39409
|
]
|
39282
39410
|
},
|
39283
39411
|
{
|
39284
|
-
name: '
|
39412
|
+
name: 'Sahara AI',
|
39285
39413
|
chain: 'Sahara',
|
39286
39414
|
rpc: [ 'https://mainnet.saharalabs.ai' ],
|
39287
39415
|
faucets: [],
|
39288
|
-
nativeCurrency: { name: '
|
39416
|
+
nativeCurrency: { name: 'Sahara AI', symbol: 'SAHARA', decimals: 18 },
|
39289
39417
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
39290
39418
|
infoURL: 'https://saharalabs.ai',
|
39291
39419
|
shortName: 'sahara',
|