eth-chainlist 0.0.632 → 0.0.634
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 +119 -31
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.634 (2025-03-09)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.633 ([6c9dc59](https://github.com/poowf/eth-chainlist/commit/6c9dc598104178bd4de61ebea0579825aaadea7c))
|
9
|
+
* update chain data ([9203116](https://github.com/poowf/eth-chainlist/commit/9203116f96ea6655f3d5d4666d19a40c1fb37b9f))
|
10
|
+
|
11
|
+
### 0.0.633 (2025-03-08)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.632 ([03738f3](https://github.com/poowf/eth-chainlist/commit/03738f36ed9c381839cfc1de36593ebc840560df))
|
17
|
+
* update chain data ([975dfb3](https://github.com/poowf/eth-chainlist/commit/975dfb305ef99b5be98ab52732f05946712e1bea))
|
18
|
+
|
3
19
|
### 0.0.632 (2025-03-07)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -3685,10 +3685,7 @@ const chainArray = [
|
|
3685
3685
|
{
|
3686
3686
|
name: 'IOST Mainnet',
|
3687
3687
|
chain: 'iost',
|
3688
|
-
rpc: [
|
3689
|
-
'https://iost-mainnet.alt.technology',
|
3690
|
-
'wss://iost-mainnet.alt.technology/ws'
|
3691
|
-
],
|
3688
|
+
rpc: [ 'https://l2-mainnet.iost.io', 'wss://l2-mainnet.iost.io' ],
|
3692
3689
|
faucets: [],
|
3693
3690
|
nativeCurrency: { name: 'BNB Chain Native Token', symbol: 'BNB', decimals: 18 },
|
3694
3691
|
infoURL: 'https://iost.io',
|
@@ -3700,18 +3697,14 @@ const chainArray = [
|
|
3700
3697
|
explorers: [
|
3701
3698
|
{
|
3702
3699
|
name: 'IOSTscan',
|
3703
|
-
url: 'https://
|
3700
|
+
url: 'https://l2-scan.iost.io',
|
3704
3701
|
standard: 'EIP3091'
|
3705
3702
|
}
|
3706
3703
|
],
|
3707
3704
|
parent: {
|
3708
3705
|
type: 'L2',
|
3709
3706
|
chain: 'eip155-56',
|
3710
|
-
bridges: [
|
3711
|
-
{
|
3712
|
-
url: 'https://10910bc5-8382-4ef5-bdc7-4c54c8f57e75.bridges.rollbridge.app/'
|
3713
|
-
}
|
3714
|
-
]
|
3707
|
+
bridges: [ { url: 'https://l2-bridge.iost.io' } ]
|
3715
3708
|
}
|
3716
3709
|
},
|
3717
3710
|
{
|
@@ -8969,6 +8962,17 @@ const chainArray = [
|
|
8969
8962
|
}
|
8970
8963
|
]
|
8971
8964
|
},
|
8965
|
+
{
|
8966
|
+
name: 'Radius Testnet',
|
8967
|
+
chain: 'Radius',
|
8968
|
+
rpc: [ 'https://dev-secure.rpc.theradius.xyz' ],
|
8969
|
+
faucets: [],
|
8970
|
+
nativeCurrency: { name: 'Useless', symbol: 'USLS', decimals: 18 },
|
8971
|
+
infoURL: 'https://www.theradius.xyz/',
|
8972
|
+
shortName: 'radius-testnet',
|
8973
|
+
chainId: 863,
|
8974
|
+
networkId: 863
|
8975
|
+
},
|
8972
8976
|
{
|
8973
8977
|
name: 'Fantasia Chain Mainnet',
|
8974
8978
|
chain: 'FSC',
|
@@ -12743,6 +12747,27 @@ const chainArray = [
|
|
12743
12747
|
}
|
12744
12748
|
]
|
12745
12749
|
},
|
12750
|
+
{
|
12751
|
+
name: 'Reactive Mainnet',
|
12752
|
+
title: 'Reactive Network',
|
12753
|
+
chain: 'REACT',
|
12754
|
+
rpc: [ 'https://mainnet-rpc.rnk.dev' ],
|
12755
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
12756
|
+
faucets: [],
|
12757
|
+
nativeCurrency: { name: 'React', symbol: 'REACT', decimals: 18 },
|
12758
|
+
infoURL: 'https://reactive.network',
|
12759
|
+
shortName: 'react',
|
12760
|
+
icon: 'reactive',
|
12761
|
+
chainId: 1597,
|
12762
|
+
networkId: 1597,
|
12763
|
+
explorers: [
|
12764
|
+
{
|
12765
|
+
name: 'Reactscan',
|
12766
|
+
url: 'https://reactscan.net',
|
12767
|
+
standard: 'none'
|
12768
|
+
}
|
12769
|
+
]
|
12770
|
+
},
|
12746
12771
|
{
|
12747
12772
|
name: 'Betherance',
|
12748
12773
|
chain: 'Beth',
|
@@ -19798,24 +19823,24 @@ const chainArray = [
|
|
19798
19823
|
status: 'active'
|
19799
19824
|
},
|
19800
19825
|
{
|
19801
|
-
name: '
|
19826
|
+
name: 'Pione Zero',
|
19802
19827
|
chain: 'PZO',
|
19803
19828
|
icon: 'pzo',
|
19804
19829
|
rpc: [ 'https://rpc.zeroscan.org' ],
|
19805
|
-
faucets: [ 'https://
|
19806
|
-
nativeCurrency: { name: '
|
19830
|
+
faucets: [ 'https://dex.pionechain.com/testnet/faucet/' ],
|
19831
|
+
nativeCurrency: { name: 'Pione Zero', symbol: 'PZO', decimals: 18 },
|
19807
19832
|
infoURL: 'https://pionechain.com',
|
19808
19833
|
shortName: 'pzo',
|
19809
19834
|
chainId: 5080,
|
19810
19835
|
networkId: 5080,
|
19811
19836
|
explorers: [
|
19812
19837
|
{
|
19813
|
-
name: '
|
19838
|
+
name: 'Pione Zero Explorer',
|
19814
19839
|
url: 'https://zeroscan.org',
|
19815
19840
|
standard: 'EIP3091'
|
19816
19841
|
},
|
19817
19842
|
{
|
19818
|
-
name: '
|
19843
|
+
name: 'Pione Zero Explorer',
|
19819
19844
|
url: 'https://zero.pionescan.com',
|
19820
19845
|
standard: 'EIP3091'
|
19821
19846
|
}
|
@@ -30927,7 +30952,7 @@ const chainArray = [
|
|
30927
30952
|
{
|
30928
30953
|
name: 'Hemi Network',
|
30929
30954
|
chain: 'ETH',
|
30930
|
-
rpc: [],
|
30955
|
+
rpc: [ 'https://rpc.hemi.network/rpc' ],
|
30931
30956
|
faucets: [],
|
30932
30957
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
30933
30958
|
infoURL: 'https://hemi.xyz',
|
@@ -30935,9 +30960,16 @@ const chainArray = [
|
|
30935
30960
|
chainId: 43111,
|
30936
30961
|
networkId: 43111,
|
30937
30962
|
icon: 'hemi',
|
30938
|
-
explorers: [
|
30963
|
+
explorers: [
|
30964
|
+
{
|
30965
|
+
name: 'blockscout',
|
30966
|
+
url: 'https://explorer.hemi.xyz',
|
30967
|
+
icon: 'blockscout',
|
30968
|
+
standard: 'EIP3091'
|
30969
|
+
}
|
30970
|
+
],
|
30939
30971
|
parent: { type: 'L2', chain: 'eip155-1' },
|
30940
|
-
status: '
|
30972
|
+
status: 'active'
|
30941
30973
|
},
|
30942
30974
|
{
|
30943
30975
|
name: 'Avalanche Fuji Testnet',
|
@@ -31393,7 +31425,7 @@ const chainArray = [
|
|
31393
31425
|
name: 'Zircuit Testnet',
|
31394
31426
|
chain: 'Zircuit Testnet',
|
31395
31427
|
icon: 'zircuit',
|
31396
|
-
rpc: [ 'https://
|
31428
|
+
rpc: [ 'https://testnet.zircuit.com' ],
|
31397
31429
|
faucets: [],
|
31398
31430
|
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
31399
31431
|
infoURL: 'https://www.zircuit.com/',
|
@@ -31413,7 +31445,7 @@ const chainArray = [
|
|
31413
31445
|
name: 'Zircuit Mainnet',
|
31414
31446
|
chain: 'Zircuit Mainnet',
|
31415
31447
|
icon: 'zircuit',
|
31416
|
-
rpc: [ 'https://
|
31448
|
+
rpc: [ 'https://mainnet.zircuit.com' ],
|
31417
31449
|
faucets: [],
|
31418
31450
|
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
31419
31451
|
infoURL: 'https://www.zircuit.com/',
|
@@ -31760,7 +31792,10 @@ const chainArray = [
|
|
31760
31792
|
{
|
31761
31793
|
name: 'Electroneum Mainnet',
|
31762
31794
|
chain: 'Electroneum',
|
31763
|
-
rpc: [
|
31795
|
+
rpc: [
|
31796
|
+
'https://rpc.electroneum.com',
|
31797
|
+
'https://rpc.ankr.com/electroneum'
|
31798
|
+
],
|
31764
31799
|
faucets: [],
|
31765
31800
|
nativeCurrency: { name: 'Electroneum', symbol: 'ETN', decimals: 18 },
|
31766
31801
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
@@ -35492,7 +35527,7 @@ const chainArray = [
|
|
35492
35527
|
parent: { type: 'L2', chain: 'eip155-11155111' }
|
35493
35528
|
},
|
35494
35529
|
{
|
35495
|
-
name: 'Plume
|
35530
|
+
name: 'Plume',
|
35496
35531
|
title: 'Plume Ethereum L2 Rollup Mainnet',
|
35497
35532
|
chain: 'ETH',
|
35498
35533
|
rpc: [ 'https://rpc.plumenetwork.xyz', 'wss://rpc.plumenetwork.xyz' ],
|
@@ -35514,7 +35549,38 @@ const chainArray = [
|
|
35514
35549
|
],
|
35515
35550
|
parent: {
|
35516
35551
|
type: 'L2',
|
35517
|
-
chain: 'eip155-
|
35552
|
+
chain: 'eip155-1',
|
35553
|
+
bridges: [ { url: 'https://bridge.plumenetwork.xyz' } ]
|
35554
|
+
}
|
35555
|
+
},
|
35556
|
+
{
|
35557
|
+
name: 'Plume Mainnet',
|
35558
|
+
title: 'Plume Ethereum L2 Rollup Mainnet',
|
35559
|
+
chain: 'ETH',
|
35560
|
+
rpc: [
|
35561
|
+
'https://phoenix-rpc.plumenetwork.xyz',
|
35562
|
+
'wss://phoenix-rpc.plumenetwork.xyz'
|
35563
|
+
],
|
35564
|
+
faucets: [],
|
35565
|
+
nativeCurrency: { name: 'Plume', symbol: 'PLUME', decimals: 18 },
|
35566
|
+
infoURL: 'https://plumenetwork.xyz/',
|
35567
|
+
shortName: 'plume-mainnet',
|
35568
|
+
chainId: 98866,
|
35569
|
+
networkId: 98866,
|
35570
|
+
slip44: 1,
|
35571
|
+
icon: 'plume',
|
35572
|
+
status: 'incubating',
|
35573
|
+
explorers: [
|
35574
|
+
{
|
35575
|
+
name: 'Blockscout',
|
35576
|
+
url: 'https://phoenix-explorer.plumenetwork.xyz',
|
35577
|
+
icon: 'blockscout',
|
35578
|
+
standard: 'EIP3091'
|
35579
|
+
}
|
35580
|
+
],
|
35581
|
+
parent: {
|
35582
|
+
type: 'L2',
|
35583
|
+
chain: 'eip155-1',
|
35518
35584
|
bridges: [ { url: 'https://bridge.plumenetwork.xyz' } ]
|
35519
35585
|
}
|
35520
35586
|
},
|
@@ -35906,6 +35972,19 @@ const chainArray = [
|
|
35906
35972
|
],
|
35907
35973
|
redFlags: [ 'reusedChainId' ]
|
35908
35974
|
},
|
35975
|
+
{
|
35976
|
+
name: 'Xitcoin',
|
35977
|
+
chain: 'XITCOIN',
|
35978
|
+
faucets: [],
|
35979
|
+
rpc: [ 'https://network.xitcoin.org' ],
|
35980
|
+
nativeCurrency: { name: 'Xitcoin', symbol: '$XTC', decimals: 8 },
|
35981
|
+
infoURL: 'https://docs.xitcoin.org/',
|
35982
|
+
shortName: 'Xitcoin',
|
35983
|
+
chainId: 101088,
|
35984
|
+
networkId: 101088,
|
35985
|
+
icon: 'xitcoin',
|
35986
|
+
explorers: []
|
35987
|
+
},
|
35909
35988
|
{
|
35910
35989
|
name: 'Creditcoin',
|
35911
35990
|
chain: 'CTC',
|
@@ -39945,6 +40024,18 @@ const chainArray = [
|
|
39945
40024
|
}
|
39946
40025
|
]
|
39947
40026
|
},
|
40027
|
+
{
|
40028
|
+
name: 'Gensyn Testnet',
|
40029
|
+
chain: 'Gensyn',
|
40030
|
+
rpc: [],
|
40031
|
+
faucets: [],
|
40032
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
40033
|
+
infoURL: 'https://www.gensyn.ai/',
|
40034
|
+
shortName: 'gensyn-test',
|
40035
|
+
chainId: 685685,
|
40036
|
+
networkId: 685685,
|
40037
|
+
status: 'incubating'
|
40038
|
+
},
|
39948
40039
|
{
|
39949
40040
|
name: 'Won Network',
|
39950
40041
|
chainId: 686868,
|
@@ -41991,8 +42082,8 @@ const chainArray = [
|
|
41991
42082
|
{
|
41992
42083
|
name: 'Electroneum Testnet',
|
41993
42084
|
chain: 'Electroneum',
|
41994
|
-
rpc: [ 'https://
|
41995
|
-
faucets: [],
|
42085
|
+
rpc: [ 'https://rpc.ankr.com/electroneum_testnet' ],
|
42086
|
+
faucets: [ 'https://faucet.electroneum.com' ],
|
41996
42087
|
nativeCurrency: { name: 'Electroneum', symbol: 'ETN', decimals: 18 },
|
41997
42088
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
41998
42089
|
infoURL: 'https://electroneum.com',
|
@@ -42004,7 +42095,7 @@ const chainArray = [
|
|
42004
42095
|
explorers: [
|
42005
42096
|
{
|
42006
42097
|
name: 'blockscout',
|
42007
|
-
url: 'https://blockexplorer.
|
42098
|
+
url: 'https://testnet-blockexplorer.electroneum.com',
|
42008
42099
|
icon: 'electroneum',
|
42009
42100
|
standard: 'EIP3091'
|
42010
42101
|
}
|
@@ -42014,10 +42105,7 @@ const chainArray = [
|
|
42014
42105
|
name: 'Reactive Kopli',
|
42015
42106
|
title: 'Reactive Network Testnet Kopli',
|
42016
42107
|
chain: 'REACT',
|
42017
|
-
rpc: [
|
42018
|
-
'https://kopli-rpc.reactive.network',
|
42019
|
-
'http://kopli-rpc.rkt.ink'
|
42020
|
-
],
|
42108
|
+
rpc: [ 'https://kopli-rpc.rnk.dev' ],
|
42021
42109
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
42022
42110
|
faucets: [ 'https://dev.reactive.network/docs/kopli-testnet#faucet' ],
|
42023
42111
|
nativeCurrency: { name: 'Kopli React', symbol: 'REACT', decimals: 18 },
|
@@ -42028,7 +42116,7 @@ const chainArray = [
|
|
42028
42116
|
networkId: 5318008,
|
42029
42117
|
explorers: [
|
42030
42118
|
{
|
42031
|
-
name: '
|
42119
|
+
name: 'Reactscan',
|
42032
42120
|
url: 'https://kopli.reactscan.net',
|
42033
42121
|
standard: 'none'
|
42034
42122
|
}
|