eth-chainlist 0.0.611 → 0.0.613
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 +157 -17
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.613 (2025-02-14)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.612 ([3b56a2f](https://github.com/poowf/eth-chainlist/commit/3b56a2f9ad2d206d6be10cccc80dd7a25c3b66c3))
|
9
|
+
* update chain data ([5d57f52](https://github.com/poowf/eth-chainlist/commit/5d57f524391297c0543a59f3e697bded439e98a0))
|
10
|
+
|
11
|
+
### 0.0.612 (2025-02-13)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.611 ([f259848](https://github.com/poowf/eth-chainlist/commit/f2598486426f12e2752ba2325c308771201b6d91))
|
17
|
+
* update chain data ([72e9742](https://github.com/poowf/eth-chainlist/commit/72e97423ade3684a5fe22cd45694efbdad6fa63f))
|
18
|
+
|
3
19
|
### 0.0.611 (2025-02-12)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -2728,14 +2728,30 @@ const chainArray = [
|
|
2728
2728
|
{
|
2729
2729
|
name: 'Unichain',
|
2730
2730
|
chain: 'ETH',
|
2731
|
-
rpc: [
|
2731
|
+
rpc: [
|
2732
|
+
'https://mainnet.unichain.org',
|
2733
|
+
'https://unichain-rpc.publicnode.com',
|
2734
|
+
'wss://unichain-rpc.publicnode.com'
|
2735
|
+
],
|
2732
2736
|
faucets: [],
|
2733
2737
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
2734
2738
|
infoURL: 'https://unichain.org',
|
2735
2739
|
shortName: 'unichain',
|
2736
2740
|
chainId: 130,
|
2737
2741
|
networkId: 130,
|
2738
|
-
|
2742
|
+
icon: 'unichain',
|
2743
|
+
explorers: [
|
2744
|
+
{
|
2745
|
+
name: 'Unichain Mainnet Explorer',
|
2746
|
+
url: 'https://uniscan.xyz',
|
2747
|
+
standard: 'EIP3091'
|
2748
|
+
},
|
2749
|
+
{
|
2750
|
+
name: 'Unichain Mainnet Explorer',
|
2751
|
+
url: 'https://unichain.blockscout.com',
|
2752
|
+
standard: 'EIP3091'
|
2753
|
+
}
|
2754
|
+
]
|
2739
2755
|
},
|
2740
2756
|
{
|
2741
2757
|
name: 'Engram Testnet',
|
@@ -6817,6 +6833,19 @@ const chainArray = [
|
|
6817
6833
|
networkId: 486,
|
6818
6834
|
status: 'incubating'
|
6819
6835
|
},
|
6836
|
+
{
|
6837
|
+
name: 'Landstars',
|
6838
|
+
chain: 'Landstars',
|
6839
|
+
icon: 'landstars',
|
6840
|
+
rpc: [ 'https://13882-60301.pph-server.de' ],
|
6841
|
+
faucets: [],
|
6842
|
+
nativeCurrency: { name: 'Landstars', symbol: 'LDS', decimals: 18 },
|
6843
|
+
infoURL: 'https://github.com/khalikov001/landstars-info',
|
6844
|
+
shortName: 'lds',
|
6845
|
+
chainId: 495,
|
6846
|
+
networkId: 495,
|
6847
|
+
explorers: []
|
6848
|
+
},
|
6820
6849
|
{
|
6821
6850
|
name: 'Rupaya',
|
6822
6851
|
chain: 'RUPX',
|
@@ -11716,6 +11745,7 @@ const chainArray = [
|
|
11716
11745
|
shortName: 'unichain-sep',
|
11717
11746
|
chainId: 1301,
|
11718
11747
|
networkId: 1301,
|
11748
|
+
icon: 'unichain-testnet',
|
11719
11749
|
explorers: [
|
11720
11750
|
{
|
11721
11751
|
name: 'Unichain Sepolia Testnet Explorer',
|
@@ -19623,22 +19653,22 @@ const chainArray = [
|
|
19623
19653
|
]
|
19624
19654
|
},
|
19625
19655
|
{
|
19626
|
-
name: '
|
19627
|
-
chain: '
|
19656
|
+
name: 'Moca Chain Testnet',
|
19657
|
+
chain: 'Moca Chain',
|
19628
19658
|
rpc: [ 'https://testnet-rpc.mechain.tech' ],
|
19629
19659
|
faucets: [ 'https://faucet.mechain.tech' ],
|
19630
|
-
nativeCurrency: { name: '
|
19660
|
+
nativeCurrency: { name: 'MOCA', symbol: 'MOCA', decimals: 18 },
|
19631
19661
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
19632
19662
|
infoURL: 'https://mechain.tech',
|
19633
|
-
shortName: '
|
19663
|
+
shortName: 'MOCA',
|
19634
19664
|
chainId: 5151,
|
19635
19665
|
networkId: 5151,
|
19636
|
-
icon: '
|
19666
|
+
icon: 'moca',
|
19637
19667
|
explorers: [
|
19638
19668
|
{
|
19639
|
-
name: '
|
19669
|
+
name: 'Moca Chain Scan',
|
19640
19670
|
url: 'https://testnet-scan.mechain.tech',
|
19641
|
-
icon: '
|
19671
|
+
icon: 'moca',
|
19642
19672
|
standard: 'EIP3091'
|
19643
19673
|
}
|
19644
19674
|
]
|
@@ -22991,6 +23021,19 @@ const chainArray = [
|
|
22991
23021
|
networkId: 8545,
|
22992
23022
|
explorers: []
|
22993
23023
|
},
|
23024
|
+
{
|
23025
|
+
name: 'New Reality Blockchain',
|
23026
|
+
chain: 'NEWRL',
|
23027
|
+
rpc: [],
|
23028
|
+
faucets: [],
|
23029
|
+
nativeCurrency: { name: 'NewReal', symbol: 'NEWRL', decimals: 18 },
|
23030
|
+
features: [],
|
23031
|
+
infoURL: 'https://newreality.bond/',
|
23032
|
+
shortName: 'newrl',
|
23033
|
+
chainId: 8569,
|
23034
|
+
networkId: 8569,
|
23035
|
+
status: 'incubating'
|
23036
|
+
},
|
22994
23037
|
{
|
22995
23038
|
name: 'Toki Network',
|
22996
23039
|
chain: 'TOKI',
|
@@ -23716,16 +23759,16 @@ const chainArray = [
|
|
23716
23759
|
]
|
23717
23760
|
},
|
23718
23761
|
{
|
23719
|
-
name: 'Shido
|
23762
|
+
name: 'Shido Network',
|
23720
23763
|
chain: 'Shido Mainnet',
|
23721
23764
|
rpc: [
|
23722
|
-
'https://
|
23723
|
-
'wss://
|
23724
|
-
'https://
|
23725
|
-
'wss://wss
|
23765
|
+
'https://shido-mainnet-archive-lb-nw5es9.zeeve.net/USjg7xqUmCZ4wCsqEOOE/rpc',
|
23766
|
+
'wss://shido-mainnet-archive-lb-nw5es9.zeeve.net/USjg7xqUmCZ4wCsqEOOE/ws',
|
23767
|
+
'https://evm.shidoscan.net',
|
23768
|
+
'wss://wss.shidoscan.net'
|
23726
23769
|
],
|
23727
23770
|
faucets: [],
|
23728
|
-
nativeCurrency: { name: 'Shido
|
23771
|
+
nativeCurrency: { name: 'Shido', symbol: 'SHIDO', decimals: 18 },
|
23729
23772
|
infoURL: 'https://shido.io',
|
23730
23773
|
shortName: 'Shido',
|
23731
23774
|
chainId: 9008,
|
@@ -23733,7 +23776,7 @@ const chainArray = [
|
|
23733
23776
|
icon: 'shidoChain',
|
23734
23777
|
explorers: [
|
23735
23778
|
{
|
23736
|
-
name: '
|
23779
|
+
name: 'Shidoscan',
|
23737
23780
|
url: 'https://shidoscan.com',
|
23738
23781
|
standard: 'none',
|
23739
23782
|
icon: 'shidoChain'
|
@@ -23982,6 +24025,33 @@ const chainArray = [
|
|
23982
24025
|
}
|
23983
24026
|
]
|
23984
24027
|
},
|
24028
|
+
{
|
24029
|
+
name: 'Z Chain',
|
24030
|
+
title: 'Z Chain',
|
24031
|
+
chain: 'Z',
|
24032
|
+
rpc: [ 'https://z-chain-rpc.eu-north-2.gateway.fm/?apiKey=${API_KEY}' ],
|
24033
|
+
faucets: [],
|
24034
|
+
features: [ { name: 'EIP155' } ],
|
24035
|
+
nativeCurrency: { name: 'Z', symbol: 'Z', decimals: 18 },
|
24036
|
+
infoURL: 'https://zero.tech',
|
24037
|
+
shortName: 'z',
|
24038
|
+
chainId: 9369,
|
24039
|
+
networkId: 9369,
|
24040
|
+
icon: 'z',
|
24041
|
+
explorers: [
|
24042
|
+
{
|
24043
|
+
name: 'blockscout',
|
24044
|
+
url: 'https://z-chain-blockscout.eu-north-2.gateway.fm',
|
24045
|
+
icon: 'z',
|
24046
|
+
standard: 'EIP3091'
|
24047
|
+
}
|
24048
|
+
],
|
24049
|
+
parent: {
|
24050
|
+
type: 'L2',
|
24051
|
+
chain: 'eip155-1',
|
24052
|
+
bridges: [ { url: 'https://z-chain-bridge.eu-north-2.gateway.fm' } ]
|
24053
|
+
}
|
24054
|
+
},
|
23985
24055
|
{
|
23986
24056
|
name: 'Oasys Testnet',
|
23987
24057
|
chain: 'Oasys',
|
@@ -24399,6 +24469,27 @@ const chainArray = [
|
|
24399
24469
|
}
|
24400
24470
|
]
|
24401
24471
|
},
|
24472
|
+
{
|
24473
|
+
name: 'pointledger',
|
24474
|
+
chain: 'pointledger',
|
24475
|
+
icon: 'pointledger',
|
24476
|
+
rpc: [ 'https://rpc.pointledger.net' ],
|
24477
|
+
faucets: [],
|
24478
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
24479
|
+
nativeCurrency: { name: 'PLG', symbol: 'PLG', decimals: 18 },
|
24480
|
+
infoURL: 'https://pointledger.net',
|
24481
|
+
shortName: 'pointledger',
|
24482
|
+
chainId: 9889,
|
24483
|
+
networkId: 9889,
|
24484
|
+
explorers: [
|
24485
|
+
{
|
24486
|
+
name: 'pointledger Explorer',
|
24487
|
+
url: 'https://exp.pointledger.net',
|
24488
|
+
icon: 'pointledger',
|
24489
|
+
standard: 'EIP3091'
|
24490
|
+
}
|
24491
|
+
]
|
24492
|
+
},
|
24402
24493
|
{
|
24403
24494
|
name: 'arena-z-testnet',
|
24404
24495
|
title: 'Arena-Z-Testnet',
|
@@ -33447,7 +33538,11 @@ const chainArray = [
|
|
33447
33538
|
{
|
33448
33539
|
name: 'Berachain',
|
33449
33540
|
chain: 'Berachain',
|
33450
|
-
rpc: [
|
33541
|
+
rpc: [
|
33542
|
+
'https://rpc.berachain.com',
|
33543
|
+
'https://berachain-rpc.publicnode.com',
|
33544
|
+
'wss://berachain-rpc.publicnode.com'
|
33545
|
+
],
|
33451
33546
|
faucets: [],
|
33452
33547
|
nativeCurrency: { name: 'BERA Token', symbol: 'BERA', decimals: 18 },
|
33453
33548
|
infoURL: 'https://www.berachain.com',
|
@@ -44026,6 +44121,25 @@ const chainArray = [
|
|
44026
44121
|
}
|
44027
44122
|
]
|
44028
44123
|
},
|
44124
|
+
{
|
44125
|
+
name: 'Tuxappcoin',
|
44126
|
+
chain: 'NEAR',
|
44127
|
+
rpc: [ 'https://rpc-0x4e454165.aurora-cloud.dev' ],
|
44128
|
+
icon: 'tuxa',
|
44129
|
+
faucets: [],
|
44130
|
+
nativeCurrency: { name: 'TUXA', symbol: 'TUXA', decimals: 18 },
|
44131
|
+
infoURL: 'https://x.com/tuxapp_coin',
|
44132
|
+
shortName: 'tuxa',
|
44133
|
+
chainId: 1313161573,
|
44134
|
+
networkId: 1313161573,
|
44135
|
+
explorers: [
|
44136
|
+
{
|
44137
|
+
name: 'TUXA explorer',
|
44138
|
+
url: 'https://explorer.tuxa.aurora.dev',
|
44139
|
+
standard: 'EIP3091'
|
44140
|
+
}
|
44141
|
+
]
|
44142
|
+
},
|
44029
44143
|
{
|
44030
44144
|
name: 'SKALE Titan Hub',
|
44031
44145
|
chain: 'parallel-stormy-spica',
|
@@ -44110,6 +44224,32 @@ const chainArray = [
|
|
44110
44224
|
}
|
44111
44225
|
]
|
44112
44226
|
},
|
44227
|
+
{
|
44228
|
+
name: 'Zephyr Testnet',
|
44229
|
+
title: 'Zephyr Testnet',
|
44230
|
+
chain: 'Zephyr-testnet',
|
44231
|
+
rpc: [ 'https://zephyr-rpc.eu-north-2.gateway.fm' ],
|
44232
|
+
faucets: [ 'https://zephyr-faucet.eu-north-2.gateway.fm' ],
|
44233
|
+
nativeCurrency: { name: 'ZERO', symbol: 'Z', decimals: 18 },
|
44234
|
+
infoURL: 'https://zero.tech',
|
44235
|
+
shortName: 'zephyr',
|
44236
|
+
chainId: 1417429182,
|
44237
|
+
networkId: 1417429182,
|
44238
|
+
icon: 'zephyr',
|
44239
|
+
explorers: [
|
44240
|
+
{
|
44241
|
+
name: 'blockscout',
|
44242
|
+
url: 'https://zephyr-blockscout.eu-north-2.gateway.fm',
|
44243
|
+
icon: 'zephyr',
|
44244
|
+
standard: 'EIP3091'
|
44245
|
+
}
|
44246
|
+
],
|
44247
|
+
parent: {
|
44248
|
+
type: 'L2',
|
44249
|
+
chain: 'eip155-11155111',
|
44250
|
+
bridges: [ { url: 'https://zephyr-bridge.eu-north-2.gateway.fm' } ]
|
44251
|
+
}
|
44252
|
+
},
|
44113
44253
|
{
|
44114
44254
|
name: 'SKALE Europa Hub Testnet',
|
44115
44255
|
title: 'SKALE Europa Hub Testnet',
|