eth-chainlist 0.0.638 → 0.0.640
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 +111 -53
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.640 (2025-03-15)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.639 ([1ad31aa](https://github.com/poowf/eth-chainlist/commit/1ad31aaa909ce20c46290ee1231f7121948d73f4))
|
9
|
+
* update chain data ([4bd41db](https://github.com/poowf/eth-chainlist/commit/4bd41db6d072ac83b5068881edeca85ffeb30f7f))
|
10
|
+
|
11
|
+
### 0.0.639 (2025-03-14)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.638 ([d0d516a](https://github.com/poowf/eth-chainlist/commit/d0d516aea9ad373f63b4e0edd457f982ee753999))
|
17
|
+
* update chain data ([33dd715](https://github.com/poowf/eth-chainlist/commit/33dd7153637557ea2f4bdf5da8e0ccb179b79b73))
|
18
|
+
|
3
19
|
### 0.0.638 (2025-03-13)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -5282,7 +5282,7 @@ const chainArray = [
|
|
5282
5282
|
name: 'Hedera Mainnet',
|
5283
5283
|
chain: 'Hedera',
|
5284
5284
|
icon: 'hedera',
|
5285
|
-
rpc: [ 'https://mainnet.hashio.io/api' ],
|
5285
|
+
rpc: [ 'https://mainnet.hashio.io/api', 'https://hedera.linkpool.pro' ],
|
5286
5286
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
5287
5287
|
faucets: [],
|
5288
5288
|
nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals: 18 },
|
@@ -5292,11 +5292,6 @@ const chainArray = [
|
|
5292
5292
|
networkId: 295,
|
5293
5293
|
slip44: 3030,
|
5294
5294
|
explorers: [
|
5295
|
-
{
|
5296
|
-
name: 'HashScan',
|
5297
|
-
url: 'https://hashscan.io/mainnet',
|
5298
|
-
standard: 'EIP3091'
|
5299
|
-
},
|
5300
5295
|
{
|
5301
5296
|
name: 'Arkhia Explorer',
|
5302
5297
|
url: 'https://explorer.arkhia.io',
|
@@ -5311,11 +5306,6 @@ const chainArray = [
|
|
5311
5306
|
name: 'Hedera Explorer',
|
5312
5307
|
url: 'https://hederaexplorer.io',
|
5313
5308
|
standard: 'none'
|
5314
|
-
},
|
5315
|
-
{
|
5316
|
-
name: 'Ledger Works Explore',
|
5317
|
-
url: 'https://explore.lworks.io',
|
5318
|
-
standard: 'none'
|
5319
5309
|
}
|
5320
5310
|
]
|
5321
5311
|
},
|
@@ -15830,7 +15820,8 @@ const chainArray = [
|
|
15830
15820
|
'https://rpc.ankr.com/atleta_olympia',
|
15831
15821
|
'wss://testnet-rpc.atleta.network',
|
15832
15822
|
'https://atleta-testnet.htw.tech/',
|
15833
|
-
'https://public-atleta.nownodes.io'
|
15823
|
+
'https://public-atleta.nownodes.io',
|
15824
|
+
'https://public-atla-testnet.fastnode.io'
|
15834
15825
|
],
|
15835
15826
|
faucets: [ 'https://app-olympia.atleta.network/faucet' ],
|
15836
15827
|
nativeCurrency: { name: 'Atla Olympia', symbol: 'ATLA', decimals: 18 },
|
@@ -21925,6 +21916,7 @@ const chainArray = [
|
|
21925
21916
|
rpc: [ 'https://evm-rpc.testnet-1.nibiru.fi' ],
|
21926
21917
|
faucets: [],
|
21927
21918
|
nativeCurrency: { name: 'NIBI', symbol: 'NIBI', decimals: 18 },
|
21919
|
+
status: 'deprecated',
|
21928
21920
|
infoURL: 'https://nibiru.fi',
|
21929
21921
|
shortName: 'nibiru-testnet-1',
|
21930
21922
|
chainId: 7210,
|
@@ -21938,6 +21930,7 @@ const chainArray = [
|
|
21938
21930
|
rpc: [ 'https://evm-rpc.devnet-3.nibiru.fi' ],
|
21939
21931
|
faucets: [],
|
21940
21932
|
nativeCurrency: { name: 'NIBI', symbol: 'NIBI', decimals: 18 },
|
21933
|
+
status: 'deprecated',
|
21941
21934
|
infoURL: 'https://nibiru.fi',
|
21942
21935
|
shortName: 'nibiru-devnet-3',
|
21943
21936
|
chainId: 7222,
|
@@ -22092,7 +22085,7 @@ const chainArray = [
|
|
22092
22085
|
name: 'Rarimo',
|
22093
22086
|
title: 'Rarimo Mainnet',
|
22094
22087
|
chain: 'ETH',
|
22095
|
-
rpc: [],
|
22088
|
+
rpc: [ 'https://l2.rarimo.com', 'wss://wss.l2.rarimo.com' ],
|
22096
22089
|
faucets: [],
|
22097
22090
|
nativeCurrency: { name: 'Rarimo Ether', symbol: 'ETH', decimals: 18 },
|
22098
22091
|
infoURL: 'https://rarimo.com',
|
@@ -22100,9 +22093,20 @@ const chainArray = [
|
|
22100
22093
|
chainId: 7368,
|
22101
22094
|
networkId: 7368,
|
22102
22095
|
icon: 'rarimo',
|
22103
|
-
parent: {
|
22104
|
-
|
22105
|
-
|
22096
|
+
parent: {
|
22097
|
+
type: 'L2',
|
22098
|
+
chain: 'eip155-1',
|
22099
|
+
bridges: [ { url: 'https://l2bridge.rarimo.com' } ]
|
22100
|
+
},
|
22101
|
+
explorers: [
|
22102
|
+
{
|
22103
|
+
name: 'Blockscout',
|
22104
|
+
url: 'https://scan.rarimo.com',
|
22105
|
+
standard: 'EIP3091',
|
22106
|
+
icon: 'rarimo'
|
22107
|
+
}
|
22108
|
+
],
|
22109
|
+
status: 'active'
|
22106
22110
|
},
|
22107
22111
|
{
|
22108
22112
|
name: 'Raba Network Mainnet',
|
@@ -23066,13 +23070,13 @@ const chainArray = [
|
|
23066
23070
|
explorers: []
|
23067
23071
|
},
|
23068
23072
|
{
|
23069
|
-
name: '
|
23070
|
-
chain: '
|
23073
|
+
name: 'ZenChain',
|
23074
|
+
chain: 'ZTC',
|
23071
23075
|
icon: 'zenchain',
|
23072
23076
|
rpc: [],
|
23073
23077
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
23074
23078
|
faucets: [],
|
23075
|
-
nativeCurrency: { name: '
|
23079
|
+
nativeCurrency: { name: 'ZTC', symbol: 'ZTC', decimals: 18 },
|
23076
23080
|
infoURL: 'https://zenchain.io',
|
23077
23081
|
shortName: 'zen',
|
23078
23082
|
chainId: 8108,
|
@@ -23379,8 +23383,8 @@ const chainArray = [
|
|
23379
23383
|
explorers: []
|
23380
23384
|
},
|
23381
23385
|
{
|
23382
|
-
name: '
|
23383
|
-
chain: '
|
23386
|
+
name: 'ZenChain Testnet',
|
23387
|
+
chain: 'ZTC',
|
23384
23388
|
icon: 'zenchain',
|
23385
23389
|
rpc: [
|
23386
23390
|
'https://zenchain-testnet.api.onfinality.io/public',
|
@@ -23388,7 +23392,7 @@ const chainArray = [
|
|
23388
23392
|
],
|
23389
23393
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
23390
23394
|
faucets: [ 'https://facuet.zenchain.io' ],
|
23391
|
-
nativeCurrency: { name: '
|
23395
|
+
nativeCurrency: { name: 'ZTC', symbol: 'ZTC', decimals: 18 },
|
23392
23396
|
infoURL: 'https://zenchain.io',
|
23393
23397
|
shortName: 'zentest',
|
23394
23398
|
chainId: 8408,
|
@@ -25859,6 +25863,21 @@ const chainArray = [
|
|
25859
25863
|
]
|
25860
25864
|
}
|
25861
25865
|
},
|
25866
|
+
{
|
25867
|
+
name: 'Fuse Flash Testnet',
|
25868
|
+
chain: 'Fuse Flash',
|
25869
|
+
rpc: [],
|
25870
|
+
faucets: [ 'https://faucet.quicknode.com' ],
|
25871
|
+
nativeCurrency: { name: 'Fuse', symbol: 'FUSE', decimals: 18 },
|
25872
|
+
features: [ { name: 'EIP155' } ],
|
25873
|
+
infoURL: 'https://www.fuse.io',
|
25874
|
+
shortName: 'fuseflash',
|
25875
|
+
chainId: 10920,
|
25876
|
+
networkId: 10920,
|
25877
|
+
icon: 'fuse',
|
25878
|
+
parent: { type: 'L2', chain: 'eip155-11155111' },
|
25879
|
+
status: 'incubating'
|
25880
|
+
},
|
25862
25881
|
{
|
25863
25882
|
name: 'Quadrans Blockchain',
|
25864
25883
|
chain: 'QDC',
|
@@ -26192,23 +26211,23 @@ const chainArray = [
|
|
26192
26211
|
]
|
26193
26212
|
},
|
26194
26213
|
{
|
26195
|
-
name: '
|
26196
|
-
chain: '
|
26214
|
+
name: 'GEB Mainnet',
|
26215
|
+
chain: 'GEB',
|
26197
26216
|
rpc: [
|
26198
|
-
'https://rpc-mainnet-1.
|
26199
|
-
'https://rpc-mainnet-2.
|
26217
|
+
'https://rpc-mainnet-1.geb.network/',
|
26218
|
+
'https://rpc-mainnet-2.geb.network/'
|
26200
26219
|
],
|
26201
26220
|
faucets: [],
|
26202
26221
|
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
26203
|
-
infoURL: 'https://
|
26204
|
-
shortName: '
|
26222
|
+
infoURL: 'https://geb.network',
|
26223
|
+
shortName: 'geb',
|
26205
26224
|
chainId: 11501,
|
26206
26225
|
networkId: 11501,
|
26207
|
-
icon: '
|
26226
|
+
icon: 'geb',
|
26208
26227
|
explorers: [
|
26209
26228
|
{
|
26210
|
-
name: '
|
26211
|
-
url: 'https://scan
|
26229
|
+
name: 'geb mainnet scan',
|
26230
|
+
url: 'https://scan.geb.network',
|
26212
26231
|
standard: 'none'
|
26213
26232
|
},
|
26214
26233
|
{
|
@@ -26238,20 +26257,20 @@ const chainArray = [
|
|
26238
26257
|
]
|
26239
26258
|
},
|
26240
26259
|
{
|
26241
|
-
name: '
|
26242
|
-
chain: '
|
26243
|
-
rpc: [ 'https://signet.
|
26260
|
+
name: 'GEB Signet',
|
26261
|
+
chain: 'GEB',
|
26262
|
+
rpc: [ 'https://signet.geb.network/' ],
|
26244
26263
|
faucets: [],
|
26245
26264
|
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
26246
|
-
infoURL: 'https://
|
26247
|
-
shortName: '
|
26265
|
+
infoURL: 'https://geb.network',
|
26266
|
+
shortName: 'geb-signet',
|
26248
26267
|
chainId: 11504,
|
26249
26268
|
networkId: 11504,
|
26250
|
-
icon: '
|
26269
|
+
icon: 'geb',
|
26251
26270
|
explorers: [
|
26252
26271
|
{
|
26253
|
-
name: '
|
26254
|
-
url: 'https://scan-signet.
|
26272
|
+
name: 'geb signet scan',
|
26273
|
+
url: 'https://scan-signet.geb.network',
|
26255
26274
|
standard: 'none'
|
26256
26275
|
}
|
26257
26276
|
]
|
@@ -27779,6 +27798,25 @@ const chainArray = [
|
|
27779
27798
|
}
|
27780
27799
|
]
|
27781
27800
|
},
|
27801
|
+
{
|
27802
|
+
name: 'Esports Chain',
|
27803
|
+
chain: 'ESPT',
|
27804
|
+
icon: 'esports',
|
27805
|
+
rpc: [ 'https://esportsblock.org/rpc/' ],
|
27806
|
+
faucets: [],
|
27807
|
+
nativeCurrency: { name: 'Esport Token', symbol: 'ESPT', decimals: 18 },
|
27808
|
+
infoURL: 'https://esportsblock.org',
|
27809
|
+
shortName: 'Esports',
|
27810
|
+
chainId: 17735,
|
27811
|
+
networkId: 17735,
|
27812
|
+
explorers: [
|
27813
|
+
{
|
27814
|
+
name: 'esportsblock_explorer',
|
27815
|
+
url: 'https://esportsblock.org/explorer',
|
27816
|
+
standard: 'none'
|
27817
|
+
}
|
27818
|
+
]
|
27819
|
+
},
|
27782
27820
|
{
|
27783
27821
|
name: 'EOS EVM Network',
|
27784
27822
|
chain: 'EOS',
|
@@ -28984,20 +29022,20 @@ const chainArray = [
|
|
28984
29022
|
]
|
28985
29023
|
},
|
28986
29024
|
{
|
28987
|
-
name: '
|
28988
|
-
chain: '
|
28989
|
-
icon: '
|
28990
|
-
rpc: [ 'https://rpc.
|
29025
|
+
name: 'Nexurachain',
|
29026
|
+
chain: 'nexurachain',
|
29027
|
+
icon: 'xuraIcon',
|
29028
|
+
rpc: [ 'https://rpc.nexurachain.io' ],
|
28991
29029
|
faucets: [],
|
28992
|
-
nativeCurrency: { name: '
|
28993
|
-
infoURL: 'https://
|
28994
|
-
shortName: '
|
29030
|
+
nativeCurrency: { name: 'XURA', symbol: 'XURA', decimals: 18 },
|
29031
|
+
infoURL: 'https://nexurachain.io',
|
29032
|
+
shortName: 'XURAm',
|
28995
29033
|
chainId: 24125,
|
28996
29034
|
networkId: 24125,
|
28997
29035
|
explorers: [
|
28998
29036
|
{
|
28999
|
-
name: '
|
29000
|
-
url: 'https://explorer.
|
29037
|
+
name: 'Nexurachain Explorer',
|
29038
|
+
url: 'https://explorer.nexurachain.io',
|
29001
29039
|
standard: 'EIP3091'
|
29002
29040
|
}
|
29003
29041
|
]
|
@@ -40951,8 +40989,8 @@ const chainArray = [
|
|
40951
40989
|
name: 'Dodao',
|
40952
40990
|
chain: 'EVMCC',
|
40953
40991
|
rpc: [
|
40954
|
-
'https://fraa-
|
40955
|
-
'wss://fraa-
|
40992
|
+
'https://fraa-flashbox-4643-rpc.a.stagenet.tanssi.network',
|
40993
|
+
'wss://fraa-flashbox-4643-rpc.a.stagenet.tanssi.network'
|
40956
40994
|
],
|
40957
40995
|
faucets: [],
|
40958
40996
|
nativeCurrency: { name: 'Dodao', symbol: 'DODAO', decimals: 18 },
|
@@ -40963,10 +41001,16 @@ const chainArray = [
|
|
40963
41001
|
icon: 'dodao',
|
40964
41002
|
explorers: [
|
40965
41003
|
{
|
40966
|
-
name: 'Dodao Explorer',
|
40967
|
-
url: 'https://tanssi-
|
41004
|
+
name: 'Dodao EVM Explorer',
|
41005
|
+
url: 'https://evmexplorer.tanssi-chains.network/?rpcUrl=https://fraa-flashbox-4643-rpc.a.stagenet.tanssi.network',
|
40968
41006
|
icon: 'dodao',
|
40969
|
-
standard: '
|
41007
|
+
standard: 'none'
|
41008
|
+
},
|
41009
|
+
{
|
41010
|
+
name: 'Dodao Polkadot Explorer',
|
41011
|
+
url: 'https://polkadot.js.org/apps/?rpc=wss://fraa-flashbox-4643-rpc.a.stagenet.tanssi.network#/explorer',
|
41012
|
+
icon: 'dodao',
|
41013
|
+
standard: 'none'
|
40970
41014
|
}
|
40971
41015
|
]
|
40972
41016
|
},
|
@@ -43475,6 +43519,20 @@ const chainArray = [
|
|
43475
43519
|
}
|
43476
43520
|
]
|
43477
43521
|
},
|
43522
|
+
{
|
43523
|
+
name: 'Xphere Mainnet',
|
43524
|
+
chain: 'Xphere',
|
43525
|
+
icon: 'xphere',
|
43526
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
43527
|
+
rpc: [ 'https://en-bkk.x-phere.com' ],
|
43528
|
+
faucets: [],
|
43529
|
+
nativeCurrency: { name: 'Xphere', symbol: 'XP', decimals: 18 },
|
43530
|
+
infoURL: 'https://x-phere.com/',
|
43531
|
+
shortName: 'xp',
|
43532
|
+
chainId: 20250217,
|
43533
|
+
networkId: 20250217,
|
43534
|
+
explorers: []
|
43535
|
+
},
|
43478
43536
|
{
|
43479
43537
|
name: 'ETP Mainnet',
|
43480
43538
|
chain: 'ETP',
|