eth-chainlist 0.0.188 → 0.0.190
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 +118 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.190 (2023-07-20)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.189 ([64a8a95](https://github.com/poowf/eth-chainlist/commit/64a8a9566eab0a603274834f522df2c5a18bc8e7))
|
9
|
+
* update chain data ([86a3367](https://github.com/poowf/eth-chainlist/commit/86a33675da39687631951d44f664ae4caae7423b))
|
10
|
+
|
11
|
+
### 0.0.189 (2023-07-19)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.188 ([52aaa41](https://github.com/poowf/eth-chainlist/commit/52aaa41da55d93246cd783be5474781117dcd550))
|
17
|
+
* update chain data ([0cdd477](https://github.com/poowf/eth-chainlist/commit/0cdd477ee26abb084dd45d42e109d324bbc4c7d8))
|
18
|
+
|
3
19
|
### 0.0.188 (2023-07-18)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -6806,10 +6806,7 @@ const chainArray = [
|
|
6806
6806
|
{
|
6807
6807
|
name: 'BEVM',
|
6808
6808
|
chain: 'ChainX',
|
6809
|
-
rpc: [
|
6810
|
-
'https://mainnet.chainx.org/rpc',
|
6811
|
-
'https://mainnet2.chainx.org/rpc'
|
6812
|
-
],
|
6809
|
+
rpc: [ 'https://rpc-1.bevm.io/', 'https://rpc-2.bevm.io/' ],
|
6813
6810
|
faucets: [],
|
6814
6811
|
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
6815
6812
|
infoURL: 'https://chainx.org',
|
@@ -6819,7 +6816,7 @@ const chainArray = [
|
|
6819
6816
|
explorers: [
|
6820
6817
|
{
|
6821
6818
|
name: 'bevm scan',
|
6822
|
-
url: 'https://
|
6819
|
+
url: 'https://scan.bevm.io',
|
6823
6820
|
standard: 'none'
|
6824
6821
|
}
|
6825
6822
|
]
|
@@ -7883,7 +7880,7 @@ const chainArray = [
|
|
7883
7880
|
{
|
7884
7881
|
name: 'Stratos Testnet',
|
7885
7882
|
chain: 'STOS',
|
7886
|
-
rpc: [ 'https://web3-
|
7883
|
+
rpc: [ 'https://web3-rpc-mesos.thestratos.org' ],
|
7887
7884
|
faucets: [],
|
7888
7885
|
nativeCurrency: { name: 'STOS', symbol: 'STOS', decimals: 18 },
|
7889
7886
|
infoURL: 'https://www.thestratos.org',
|
@@ -7893,12 +7890,12 @@ const chainArray = [
|
|
7893
7890
|
explorers: [
|
7894
7891
|
{
|
7895
7892
|
name: 'Stratos EVM Explorer (Blockscout)',
|
7896
|
-
url: 'https://web3-
|
7893
|
+
url: 'https://web3-explorer-mesos.thestratos.org',
|
7897
7894
|
standard: 'none'
|
7898
7895
|
},
|
7899
7896
|
{
|
7900
7897
|
name: 'Stratos Cosmos Explorer (BigDipper)',
|
7901
|
-
url: 'https://big-dipper-
|
7898
|
+
url: 'https://big-dipper-mesos.thestratos.org',
|
7902
7899
|
standard: 'none'
|
7903
7900
|
}
|
7904
7901
|
]
|
@@ -8148,6 +8145,25 @@ const chainArray = [
|
|
8148
8145
|
}
|
8149
8146
|
]
|
8150
8147
|
},
|
8148
|
+
{
|
8149
|
+
name: 'Antofy Mainnet',
|
8150
|
+
chain: 'ABN',
|
8151
|
+
icon: 'antofy',
|
8152
|
+
rpc: [ 'https://rpc.antofy.io' ],
|
8153
|
+
faucets: [ 'https://faucet.antofy.io' ],
|
8154
|
+
nativeCurrency: { name: 'Antofy', symbol: 'ABN', decimals: 18 },
|
8155
|
+
infoURL: 'https://antofy.io',
|
8156
|
+
shortName: 'ABNm',
|
8157
|
+
chainId: 2202,
|
8158
|
+
networkId: 2202,
|
8159
|
+
explorers: [
|
8160
|
+
{
|
8161
|
+
name: 'Antofy Mainnet',
|
8162
|
+
url: 'https://antofyscan.com',
|
8163
|
+
standard: 'EIP3091'
|
8164
|
+
}
|
8165
|
+
]
|
8166
|
+
},
|
8151
8167
|
{
|
8152
8168
|
name: 'Bitcoin EVM',
|
8153
8169
|
chain: 'Bitcoin EVM',
|
@@ -9689,6 +9705,7 @@ const chainArray = [
|
|
9689
9705
|
{
|
9690
9706
|
name: 'Mantle',
|
9691
9707
|
chain: 'ETH',
|
9708
|
+
icon: 'mantle',
|
9692
9709
|
rpc: [ 'https://rpc.mantle.xyz' ],
|
9693
9710
|
faucets: [],
|
9694
9711
|
nativeCurrency: { name: 'Mantle', symbol: 'MNT', decimals: 18 },
|
@@ -9702,7 +9719,12 @@ const chainArray = [
|
|
9702
9719
|
url: 'https://explorer.mantle.xyz',
|
9703
9720
|
standard: 'EIP3091'
|
9704
9721
|
}
|
9705
|
-
]
|
9722
|
+
],
|
9723
|
+
parent: {
|
9724
|
+
type: 'L2',
|
9725
|
+
chain: 'eip155-1',
|
9726
|
+
bridges: [ { url: 'https://bridge.mantle.xyz' } ]
|
9727
|
+
}
|
9706
9728
|
},
|
9707
9729
|
{
|
9708
9730
|
name: 'Mantle Testnet',
|
@@ -10383,6 +10405,28 @@ const chainArray = [
|
|
10383
10405
|
explorers: [],
|
10384
10406
|
status: 'incubating'
|
10385
10407
|
},
|
10408
|
+
{
|
10409
|
+
name: 'Horizen EON',
|
10410
|
+
shortName: 'EON',
|
10411
|
+
chain: 'EON',
|
10412
|
+
icon: 'eon',
|
10413
|
+
rpc: [ 'https://eon-rpc.horizenlabs.io/ethv1' ],
|
10414
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
10415
|
+
faucets: [],
|
10416
|
+
nativeCurrency: { name: 'Zencash', symbol: 'ZEN', decimals: 18 },
|
10417
|
+
infoURL: 'https://horizen.io/',
|
10418
|
+
chainId: 7332,
|
10419
|
+
networkId: 7332,
|
10420
|
+
slip44: 121,
|
10421
|
+
explorers: [
|
10422
|
+
{
|
10423
|
+
name: 'Horizen EON Block Explorer',
|
10424
|
+
url: 'https://eon-explorer.horizenlabs.io',
|
10425
|
+
icon: 'eon',
|
10426
|
+
standard: 'EIP3091'
|
10427
|
+
}
|
10428
|
+
]
|
10429
|
+
},
|
10386
10430
|
{
|
10387
10431
|
name: 'Shyft Mainnet',
|
10388
10432
|
chain: 'SHYFT',
|
@@ -10636,6 +10680,26 @@ const chainArray = [
|
|
10636
10680
|
}
|
10637
10681
|
]
|
10638
10682
|
},
|
10683
|
+
{
|
10684
|
+
name: 'ARDENIUM Athena',
|
10685
|
+
chain: 'ATHENA',
|
10686
|
+
rpc: [ 'https://rpc-athena.ardescan.com/' ],
|
10687
|
+
faucets: [ 'https://faucet-athena.ardescan.com/' ],
|
10688
|
+
nativeCurrency: { name: 'ARD', symbol: 'tARD', decimals: 18 },
|
10689
|
+
infoURL: 'https://ardenium.org',
|
10690
|
+
shortName: 'ard',
|
10691
|
+
chainId: 7895,
|
10692
|
+
networkId: 7895,
|
10693
|
+
icon: 'ard',
|
10694
|
+
explorers: [
|
10695
|
+
{
|
10696
|
+
name: 'ARDENIUM Athena Explorer',
|
10697
|
+
icon: 'ard',
|
10698
|
+
url: 'https://testnet.ardscan.com',
|
10699
|
+
standard: 'none'
|
10700
|
+
}
|
10701
|
+
]
|
10702
|
+
},
|
10639
10703
|
{
|
10640
10704
|
name: 'DOS Chain',
|
10641
10705
|
chain: 'DOS',
|
@@ -11403,6 +11467,25 @@ const chainArray = [
|
|
11403
11467
|
explorers: [],
|
11404
11468
|
status: 'deprecated'
|
11405
11469
|
},
|
11470
|
+
{
|
11471
|
+
name: 'Codefin Mainnet',
|
11472
|
+
chain: 'COF',
|
11473
|
+
icon: 'codefin',
|
11474
|
+
rpc: [ 'https://chain-rpc.codefin.pro' ],
|
11475
|
+
faucets: [],
|
11476
|
+
nativeCurrency: { name: 'Codefin', symbol: 'COF', decimals: 18 },
|
11477
|
+
infoURL: 'https://network.codefin.pro',
|
11478
|
+
shortName: 'COF',
|
11479
|
+
chainId: 9223,
|
11480
|
+
networkId: 9223,
|
11481
|
+
explorers: [
|
11482
|
+
{
|
11483
|
+
name: 'Codefin Net Explorer',
|
11484
|
+
url: 'https://explorer.codefin.pro',
|
11485
|
+
standard: 'EIP3091'
|
11486
|
+
}
|
11487
|
+
]
|
11488
|
+
},
|
11406
11489
|
{
|
11407
11490
|
name: 'Dogcoin Testnet',
|
11408
11491
|
chain: 'DOGS',
|
@@ -11653,7 +11736,10 @@ const chainArray = [
|
|
11653
11736
|
icon: 'gonchain',
|
11654
11737
|
rpc: [
|
11655
11738
|
'https://node1.testnet.gaiaopen.network',
|
11656
|
-
'
|
11739
|
+
'https://node1.mainnet.gon.network',
|
11740
|
+
'https://node2.mainnet.gon.network',
|
11741
|
+
'https://node3.mainnet.gon.network',
|
11742
|
+
'https://node4.mainnet.gon.network'
|
11657
11743
|
],
|
11658
11744
|
faucets: [],
|
11659
11745
|
nativeCurrency: { name: 'Gon Token', symbol: 'GT', decimals: 18 },
|
@@ -15544,7 +15630,7 @@ const chainArray = [
|
|
15544
15630
|
]
|
15545
15631
|
},
|
15546
15632
|
{
|
15547
|
-
name: 'Taiko
|
15633
|
+
name: 'Taiko Grimsvotn L2',
|
15548
15634
|
chain: 'ETH',
|
15549
15635
|
status: 'active',
|
15550
15636
|
icon: 'taiko',
|
@@ -15552,7 +15638,7 @@ const chainArray = [
|
|
15552
15638
|
faucets: [],
|
15553
15639
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
15554
15640
|
infoURL: 'https://taiko.xyz',
|
15555
|
-
shortName: 'taiko-
|
15641
|
+
shortName: 'taiko-l2',
|
15556
15642
|
chainId: 167005,
|
15557
15643
|
networkId: 167005,
|
15558
15644
|
explorers: [
|
@@ -15563,6 +15649,26 @@ const chainArray = [
|
|
15563
15649
|
}
|
15564
15650
|
]
|
15565
15651
|
},
|
15652
|
+
{
|
15653
|
+
name: 'Taiko Eldfell L3',
|
15654
|
+
chain: 'ETH',
|
15655
|
+
status: 'active',
|
15656
|
+
icon: 'taiko',
|
15657
|
+
rpc: [ 'https://rpc.l3test.taiko.xyz' ],
|
15658
|
+
faucets: [],
|
15659
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
15660
|
+
infoURL: 'https://taiko.xyz',
|
15661
|
+
shortName: 'taiko-l3',
|
15662
|
+
chainId: 167006,
|
15663
|
+
networkId: 167006,
|
15664
|
+
explorers: [
|
15665
|
+
{
|
15666
|
+
name: 'blockscout',
|
15667
|
+
url: 'https://explorer.l3test.taiko.xyz',
|
15668
|
+
standard: 'EIP3091'
|
15669
|
+
}
|
15670
|
+
]
|
15671
|
+
},
|
15566
15672
|
{
|
15567
15673
|
name: 'Condor Test Network',
|
15568
15674
|
chain: 'CONDOR',
|