eth-chainlist 0.0.631 → 0.0.633
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 +107 -27
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.633 (2025-03-08)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.632 ([03738f3](https://github.com/poowf/eth-chainlist/commit/03738f36ed9c381839cfc1de36593ebc840560df))
|
9
|
+
* update chain data ([975dfb3](https://github.com/poowf/eth-chainlist/commit/975dfb305ef99b5be98ab52732f05946712e1bea))
|
10
|
+
|
11
|
+
### 0.0.632 (2025-03-07)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.631 ([5403cc5](https://github.com/poowf/eth-chainlist/commit/5403cc5ea2ba39ef9b12268190138456ffb55a06))
|
17
|
+
* update chain data ([27a87e3](https://github.com/poowf/eth-chainlist/commit/27a87e31b786b6baa772a64a12945d035787d024))
|
18
|
+
|
3
19
|
### 0.0.631 (2025-03-06)
|
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
|
}
|
@@ -21500,6 +21525,19 @@ const chainArray = [
|
|
21500
21525
|
icon: 'nibiru',
|
21501
21526
|
explorers: []
|
21502
21527
|
},
|
21528
|
+
{
|
21529
|
+
name: 'Nibiru testnet-2',
|
21530
|
+
chain: 'Nibiru',
|
21531
|
+
rpc: [ 'https://evm-rpc.testnet-2.nibiru.fi' ],
|
21532
|
+
faucets: [],
|
21533
|
+
nativeCurrency: { name: 'NIBI', symbol: 'NIBI', decimals: 18 },
|
21534
|
+
infoURL: 'https://nibiru.fi',
|
21535
|
+
shortName: 'nibiru-testnet-2',
|
21536
|
+
chainId: 6911,
|
21537
|
+
networkId: 6911,
|
21538
|
+
icon: 'nibiru',
|
21539
|
+
explorers: []
|
21540
|
+
},
|
21503
21541
|
{
|
21504
21542
|
name: 'XYL TestNet',
|
21505
21543
|
chain: 'XYL',
|
@@ -30914,7 +30952,7 @@ const chainArray = [
|
|
30914
30952
|
{
|
30915
30953
|
name: 'Hemi Network',
|
30916
30954
|
chain: 'ETH',
|
30917
|
-
rpc: [],
|
30955
|
+
rpc: [ 'https://rpc.hemi.network/rpc' ],
|
30918
30956
|
faucets: [],
|
30919
30957
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
30920
30958
|
infoURL: 'https://hemi.xyz',
|
@@ -30922,9 +30960,16 @@ const chainArray = [
|
|
30922
30960
|
chainId: 43111,
|
30923
30961
|
networkId: 43111,
|
30924
30962
|
icon: 'hemi',
|
30925
|
-
explorers: [
|
30963
|
+
explorers: [
|
30964
|
+
{
|
30965
|
+
name: 'blockscout',
|
30966
|
+
url: 'https://explorer.hemi.xyz',
|
30967
|
+
icon: 'blockscout',
|
30968
|
+
standard: 'EIP3091'
|
30969
|
+
}
|
30970
|
+
],
|
30926
30971
|
parent: { type: 'L2', chain: 'eip155-1' },
|
30927
|
-
status: '
|
30972
|
+
status: 'active'
|
30928
30973
|
},
|
30929
30974
|
{
|
30930
30975
|
name: 'Avalanche Fuji Testnet',
|
@@ -31356,11 +31401,31 @@ const chainArray = [
|
|
31356
31401
|
}
|
31357
31402
|
]
|
31358
31403
|
},
|
31404
|
+
{
|
31405
|
+
name: 'Zircuit Garfield Testnet',
|
31406
|
+
chain: 'Zircuit Garfield Testnet',
|
31407
|
+
icon: 'zircuit',
|
31408
|
+
rpc: [ 'https://garfield-testnet.zircuit.com/' ],
|
31409
|
+
faucets: [],
|
31410
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
31411
|
+
infoURL: 'https://www.zircuit.com/',
|
31412
|
+
shortName: 'zircuit-garfield-testnet',
|
31413
|
+
chainId: 48898,
|
31414
|
+
networkId: 48898,
|
31415
|
+
explorers: [
|
31416
|
+
{
|
31417
|
+
name: 'Zircuit',
|
31418
|
+
url: 'https://explorer.garfield-testnet.zircuit.com',
|
31419
|
+
icon: 'zircuit',
|
31420
|
+
standard: 'none'
|
31421
|
+
}
|
31422
|
+
]
|
31423
|
+
},
|
31359
31424
|
{
|
31360
31425
|
name: 'Zircuit Testnet',
|
31361
31426
|
chain: 'Zircuit Testnet',
|
31362
31427
|
icon: 'zircuit',
|
31363
|
-
rpc: [ 'https://
|
31428
|
+
rpc: [ 'https://testnet.zircuit.com' ],
|
31364
31429
|
faucets: [],
|
31365
31430
|
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
31366
31431
|
infoURL: 'https://www.zircuit.com/',
|
@@ -31380,7 +31445,7 @@ const chainArray = [
|
|
31380
31445
|
name: 'Zircuit Mainnet',
|
31381
31446
|
chain: 'Zircuit Mainnet',
|
31382
31447
|
icon: 'zircuit',
|
31383
|
-
rpc: [ 'https://
|
31448
|
+
rpc: [ 'https://mainnet.zircuit.com' ],
|
31384
31449
|
faucets: [],
|
31385
31450
|
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
31386
31451
|
infoURL: 'https://www.zircuit.com/',
|
@@ -37633,8 +37698,8 @@ const chainArray = [
|
|
37633
37698
|
name: 'Heima',
|
37634
37699
|
chain: 'Heima',
|
37635
37700
|
rpc: [
|
37636
|
-
'https://rpc.
|
37637
|
-
'wss://rpc.
|
37701
|
+
'https://rpc.heima-parachain.heima.network',
|
37702
|
+
'wss://rpc.heima-parachain.heima.network',
|
37638
37703
|
'https://litentry-rpc.dwellir.com',
|
37639
37704
|
'wss://litentry-rpc.dwellir.com'
|
37640
37705
|
],
|
@@ -41783,6 +41848,24 @@ const chainArray = [
|
|
41783
41848
|
}
|
41784
41849
|
]
|
41785
41850
|
},
|
41851
|
+
{
|
41852
|
+
name: 'Arcadia Mainnet',
|
41853
|
+
chain: 'Arcadia',
|
41854
|
+
rpc: [ 'https://arcadia.khalani.network' ],
|
41855
|
+
faucets: [],
|
41856
|
+
nativeCurrency: { name: 'AIP', symbol: 'AIP', decimals: 18 },
|
41857
|
+
infoURL: 'https://khalani.network',
|
41858
|
+
shortName: 'aip',
|
41859
|
+
chainId: 4278608,
|
41860
|
+
networkId: 4278608,
|
41861
|
+
explorers: [
|
41862
|
+
{
|
41863
|
+
name: 'Arcadia Mainnet Explorer',
|
41864
|
+
url: 'https://explorer.arcadia.khalani.network',
|
41865
|
+
standard: 'EIP3091'
|
41866
|
+
}
|
41867
|
+
]
|
41868
|
+
},
|
41786
41869
|
{
|
41787
41870
|
name: 'Worlds Caldera',
|
41788
41871
|
chain: 'WCal',
|
@@ -41963,10 +42046,7 @@ const chainArray = [
|
|
41963
42046
|
name: 'Reactive Kopli',
|
41964
42047
|
title: 'Reactive Network Testnet Kopli',
|
41965
42048
|
chain: 'REACT',
|
41966
|
-
rpc: [
|
41967
|
-
'https://kopli-rpc.reactive.network',
|
41968
|
-
'http://kopli-rpc.rkt.ink'
|
41969
|
-
],
|
42049
|
+
rpc: [ 'https://kopli-rpc.rnk.dev' ],
|
41970
42050
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
41971
42051
|
faucets: [ 'https://dev.reactive.network/docs/kopli-testnet#faucet' ],
|
41972
42052
|
nativeCurrency: { name: 'Kopli React', symbol: 'REACT', decimals: 18 },
|
@@ -41977,7 +42057,7 @@ const chainArray = [
|
|
41977
42057
|
networkId: 5318008,
|
41978
42058
|
explorers: [
|
41979
42059
|
{
|
41980
|
-
name: '
|
42060
|
+
name: 'Reactscan',
|
41981
42061
|
url: 'https://kopli.reactscan.net',
|
41982
42062
|
standard: 'none'
|
41983
42063
|
}
|