eth-chainlist 0.0.725 → 0.0.730
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 +39 -0
- package/data/chain.js +271 -49
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.730 (2026-01-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.729 ([d45d3b8](https://github.com/poowf/eth-chainlist/commit/d45d3b8026d8a51a0e32f9136104a1ea7246c7c9))
|
|
9
|
+
* update chain data ([852abaf](https://github.com/poowf/eth-chainlist/commit/852abaf523bb01e0aab9d179050fccc799455549))
|
|
10
|
+
|
|
11
|
+
### 0.0.729 (2026-01-27)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* update chain data ([18b4ccc](https://github.com/poowf/eth-chainlist/commit/18b4ccca733b17f412401d574af7f7eab769cccf))
|
|
17
|
+
|
|
18
|
+
### 0.0.728 (2026-01-25)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Maintenance
|
|
22
|
+
|
|
23
|
+
* **release:** 0.0.727 ([750ab46](https://github.com/poowf/eth-chainlist/commit/750ab469383f98f586e81e3c443114e0db0eca7a))
|
|
24
|
+
* update chain data ([ef68e3a](https://github.com/poowf/eth-chainlist/commit/ef68e3ac06201222b8a0b2a886f1ad9d1df1e4e5))
|
|
25
|
+
|
|
26
|
+
### 0.0.727 (2026-01-22)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Maintenance
|
|
30
|
+
|
|
31
|
+
* **release:** 0.0.726 ([fcb8ad1](https://github.com/poowf/eth-chainlist/commit/fcb8ad11e75d23e0af2579d206b3af349d71bf38))
|
|
32
|
+
* update chain data ([afac764](https://github.com/poowf/eth-chainlist/commit/afac764b9a9ba851685f6b9b1e00687b27079747))
|
|
33
|
+
|
|
34
|
+
### 0.0.726 (2026-01-21)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
### Maintenance
|
|
38
|
+
|
|
39
|
+
* fix running commands with pnpm ([72a1841](https://github.com/poowf/eth-chainlist/commit/72a18418d7b7da0dbed1ee87fdd4bcc449a3cf90))
|
|
40
|
+
* update chain data ([b0f5d83](https://github.com/poowf/eth-chainlist/commit/b0f5d83fec55382735cad67f841b025c54558ece))
|
|
41
|
+
|
|
3
42
|
### [0.0.725](https://github.com/poowf/eth-chainlist/compare/v0.0.724...v0.0.725) (2026-01-20)
|
|
4
43
|
|
|
5
44
|
### [0.0.724](https://github.com/poowf/eth-chainlist/compare/v0.0.723...v0.0.724) (2026-01-20)
|
package/data/chain.js
CHANGED
|
@@ -10306,6 +10306,26 @@ const chainArray = [
|
|
|
10306
10306
|
}
|
|
10307
10307
|
]
|
|
10308
10308
|
},
|
|
10309
|
+
{
|
|
10310
|
+
name: 'Stable Mainnet',
|
|
10311
|
+
chain: 'Stable',
|
|
10312
|
+
rpc: [ 'https://rpc.stable.xyz' ],
|
|
10313
|
+
faucets: [],
|
|
10314
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
10315
|
+
nativeCurrency: { name: 'gUSDT', symbol: 'gUSDT', decimals: 18 },
|
|
10316
|
+
infoURL: 'https://stable.xyz',
|
|
10317
|
+
shortName: 'stable',
|
|
10318
|
+
chainId: 988,
|
|
10319
|
+
networkId: 988,
|
|
10320
|
+
icon: 'stable',
|
|
10321
|
+
explorers: [
|
|
10322
|
+
{
|
|
10323
|
+
name: 'Stablescan',
|
|
10324
|
+
url: 'https://stablescan.xyz',
|
|
10325
|
+
standard: 'EIP3091'
|
|
10326
|
+
}
|
|
10327
|
+
]
|
|
10328
|
+
},
|
|
10309
10329
|
{
|
|
10310
10330
|
name: 'TOP Mainnet',
|
|
10311
10331
|
chain: 'TOP',
|
|
@@ -12584,7 +12604,7 @@ const chainArray = [
|
|
|
12584
12604
|
name: 'Kii Testnet Oro',
|
|
12585
12605
|
chain: 'KII',
|
|
12586
12606
|
rpc: [ 'https://json-rpc.uno.sentry.testnet.v3.kiivalidator.com' ],
|
|
12587
|
-
faucets: [ 'https://explorer.kiichain.io/
|
|
12607
|
+
faucets: [ 'https://testnet.explorer.kiichain.io/faucet' ],
|
|
12588
12608
|
nativeCurrency: { name: 'Kii', symbol: 'KII', decimals: 18 },
|
|
12589
12609
|
features: [],
|
|
12590
12610
|
infoURL: 'https://kiichain.io',
|
|
@@ -12595,7 +12615,7 @@ const chainArray = [
|
|
|
12595
12615
|
explorers: [
|
|
12596
12616
|
{
|
|
12597
12617
|
name: 'KiiExplorer',
|
|
12598
|
-
url: 'https://explorer.kiichain.io
|
|
12618
|
+
url: 'https://testnet.explorer.kiichain.io',
|
|
12599
12619
|
icon: 'kii',
|
|
12600
12620
|
standard: 'none'
|
|
12601
12621
|
}
|
|
@@ -13581,25 +13601,16 @@ const chainArray = [
|
|
|
13581
13601
|
shortName: 'Gobi',
|
|
13582
13602
|
chain: 'Gobi',
|
|
13583
13603
|
icon: 'eon',
|
|
13584
|
-
rpc: [
|
|
13585
|
-
'https://gobi-rpc.horizenlabs.io/ethv1',
|
|
13586
|
-
'https://rpc.ankr.com/horizen_gobi_testnet'
|
|
13587
|
-
],
|
|
13604
|
+
rpc: [],
|
|
13588
13605
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
13589
|
-
faucets: [
|
|
13606
|
+
faucets: [],
|
|
13590
13607
|
nativeCurrency: { name: 'Testnet Zen', symbol: 'tZEN', decimals: 18 },
|
|
13591
13608
|
infoURL: 'https://horizen.io/',
|
|
13592
13609
|
chainId: 1663,
|
|
13593
13610
|
networkId: 1663,
|
|
13594
13611
|
slip44: 1,
|
|
13595
|
-
explorers: [
|
|
13596
|
-
|
|
13597
|
-
name: 'Gobi Testnet Block Explorer',
|
|
13598
|
-
url: 'https://gobi-explorer.horizen.io',
|
|
13599
|
-
icon: 'eon',
|
|
13600
|
-
standard: 'EIP3091'
|
|
13601
|
-
}
|
|
13602
|
-
]
|
|
13612
|
+
explorers: [],
|
|
13613
|
+
status: 'deprecated'
|
|
13603
13614
|
},
|
|
13604
13615
|
{
|
|
13605
13616
|
name: 'Mint Testnet',
|
|
@@ -13988,6 +13999,27 @@ const chainArray = [
|
|
|
13988
13999
|
}
|
|
13989
14000
|
]
|
|
13990
14001
|
},
|
|
14002
|
+
{
|
|
14003
|
+
name: 'KiiChain',
|
|
14004
|
+
chain: 'KII',
|
|
14005
|
+
rpc: [ 'https://json-rpc.kiivalidator.com' ],
|
|
14006
|
+
faucets: [],
|
|
14007
|
+
nativeCurrency: { name: 'Kii', symbol: 'KII', decimals: 18 },
|
|
14008
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
14009
|
+
infoURL: 'https://kiichain.io',
|
|
14010
|
+
shortName: 'kiichain',
|
|
14011
|
+
chainId: 1783,
|
|
14012
|
+
networkId: 1783,
|
|
14013
|
+
icon: 'kii',
|
|
14014
|
+
explorers: [
|
|
14015
|
+
{
|
|
14016
|
+
name: 'KiiExplorer',
|
|
14017
|
+
url: 'https://explorer.kiichain.io',
|
|
14018
|
+
icon: 'kii',
|
|
14019
|
+
standard: 'none'
|
|
14020
|
+
}
|
|
14021
|
+
]
|
|
14022
|
+
},
|
|
13991
14023
|
{
|
|
13992
14024
|
name: 'ZKBase Sepolia Testnet',
|
|
13993
14025
|
chain: 'ETH',
|
|
@@ -16313,18 +16345,12 @@ const chainArray = [
|
|
|
16313
16345
|
icon: 'stable',
|
|
16314
16346
|
rpc: [ 'https://rpc.testnet.stable.xyz' ],
|
|
16315
16347
|
faucets: [ 'https://faucet.stable.xyz' ],
|
|
16316
|
-
nativeCurrency: { name: '
|
|
16348
|
+
nativeCurrency: { name: 'USDT0', symbol: 'USDT0', decimals: 18 },
|
|
16317
16349
|
infoURL: 'https://stable.xyz',
|
|
16318
16350
|
shortName: 'stable-testnet',
|
|
16319
16351
|
chainId: 2201,
|
|
16320
16352
|
networkId: 2201,
|
|
16321
16353
|
explorers: [
|
|
16322
|
-
{
|
|
16323
|
-
name: 'Blockscout Explorer',
|
|
16324
|
-
url: 'https://blockscout.testnet.stable.xyz',
|
|
16325
|
-
icon: 'blockscout',
|
|
16326
|
-
standard: 'EIP3091'
|
|
16327
|
-
},
|
|
16328
16354
|
{
|
|
16329
16355
|
name: 'Stablescan',
|
|
16330
16356
|
url: 'https://testnet.stablescan.xyz',
|
|
@@ -19811,6 +19837,27 @@ const chainArray = [
|
|
|
19811
19837
|
}
|
|
19812
19838
|
]
|
|
19813
19839
|
},
|
|
19840
|
+
{
|
|
19841
|
+
name: 'Citrea Mainnet',
|
|
19842
|
+
chain: 'Citrea',
|
|
19843
|
+
rpc: [ 'https://rpc.mainnet.citrea.xyz' ],
|
|
19844
|
+
faucets: [],
|
|
19845
|
+
nativeCurrency: { name: 'Citrea BTC', symbol: 'cBTC', decimals: 18 },
|
|
19846
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
19847
|
+
infoURL: 'https://citrea.xyz',
|
|
19848
|
+
shortName: 'citrea',
|
|
19849
|
+
chainId: 4114,
|
|
19850
|
+
networkId: 4114,
|
|
19851
|
+
icon: 'citrea',
|
|
19852
|
+
explorers: [
|
|
19853
|
+
{
|
|
19854
|
+
name: 'Citrea Mainnet Explorer',
|
|
19855
|
+
url: 'https://explorer.mainnet.citrea.xyz',
|
|
19856
|
+
icon: 'citrea',
|
|
19857
|
+
standard: 'EIP3091'
|
|
19858
|
+
}
|
|
19859
|
+
]
|
|
19860
|
+
},
|
|
19814
19861
|
{
|
|
19815
19862
|
name: 'Humans.ai Testnet',
|
|
19816
19863
|
chain: 'Humans Testnet',
|
|
@@ -19845,6 +19892,32 @@ const chainArray = [
|
|
|
19845
19892
|
}
|
|
19846
19893
|
]
|
|
19847
19894
|
},
|
|
19895
|
+
{
|
|
19896
|
+
name: 'RISE',
|
|
19897
|
+
chain: 'ETH',
|
|
19898
|
+
rpc: [ 'https://rpc.risechain.com/', 'wss://rpc.risechain.com/ws' ],
|
|
19899
|
+
faucets: [],
|
|
19900
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
19901
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' }, { name: 'EIP7702' } ],
|
|
19902
|
+
infoURL: 'https://risechain.com',
|
|
19903
|
+
shortName: 'rise',
|
|
19904
|
+
chainId: 4153,
|
|
19905
|
+
networkId: 4153,
|
|
19906
|
+
icon: 'rise',
|
|
19907
|
+
explorers: [
|
|
19908
|
+
{
|
|
19909
|
+
name: 'Blockscout',
|
|
19910
|
+
url: 'https://explorer.risechain.com',
|
|
19911
|
+
icon: 'blockscout',
|
|
19912
|
+
standard: 'EIP3091'
|
|
19913
|
+
}
|
|
19914
|
+
],
|
|
19915
|
+
parent: {
|
|
19916
|
+
type: 'L2',
|
|
19917
|
+
chain: 'eip155-1',
|
|
19918
|
+
bridges: [ { url: 'https://bridge.risechain.com' } ]
|
|
19919
|
+
}
|
|
19920
|
+
},
|
|
19848
19921
|
{
|
|
19849
19922
|
name: 'CrossFi Testnet',
|
|
19850
19923
|
title: 'CrossFi Testnet',
|
|
@@ -23345,10 +23418,7 @@ const chainArray = [
|
|
|
23345
23418
|
shortName: 'EON',
|
|
23346
23419
|
chain: 'EON',
|
|
23347
23420
|
icon: 'eon',
|
|
23348
|
-
rpc: [
|
|
23349
|
-
'https://eon-rpc.horizenlabs.io/ethv1',
|
|
23350
|
-
'https://rpc.ankr.com/horizen_eon'
|
|
23351
|
-
],
|
|
23421
|
+
rpc: [],
|
|
23352
23422
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
23353
23423
|
faucets: [],
|
|
23354
23424
|
nativeCurrency: { name: 'Zencash', symbol: 'ZEN', decimals: 18 },
|
|
@@ -23356,14 +23426,8 @@ const chainArray = [
|
|
|
23356
23426
|
chainId: 7332,
|
|
23357
23427
|
networkId: 7332,
|
|
23358
23428
|
slip44: 121,
|
|
23359
|
-
explorers: [
|
|
23360
|
-
|
|
23361
|
-
name: 'Horizen EON Block Explorer',
|
|
23362
|
-
url: 'https://eon-explorer.horizenlabs.io',
|
|
23363
|
-
icon: 'eon',
|
|
23364
|
-
standard: 'EIP3091'
|
|
23365
|
-
}
|
|
23366
|
-
]
|
|
23429
|
+
explorers: [],
|
|
23430
|
+
status: 'deprecated'
|
|
23367
23431
|
},
|
|
23368
23432
|
{
|
|
23369
23433
|
name: 'Pruv Testnet',
|
|
@@ -23495,20 +23559,23 @@ const chainArray = [
|
|
|
23495
23559
|
]
|
|
23496
23560
|
},
|
|
23497
23561
|
{
|
|
23498
|
-
name: 'Rome
|
|
23562
|
+
name: 'Rome Palatine',
|
|
23499
23563
|
chain: 'ROME',
|
|
23500
|
-
rpc: [
|
|
23501
|
-
|
|
23564
|
+
rpc: [
|
|
23565
|
+
'https://palatine.romeprotocol.xyz',
|
|
23566
|
+
'https://palatine2.romeprotocol.xyz'
|
|
23567
|
+
],
|
|
23568
|
+
faucets: [],
|
|
23502
23569
|
nativeCurrency: { name: 'RSOL', symbol: 'RSOL', decimals: 18 },
|
|
23503
23570
|
infoURL: 'https://rome.builders',
|
|
23504
|
-
shortName: 'rome-
|
|
23571
|
+
shortName: 'rome-palatine',
|
|
23505
23572
|
chainId: 7531,
|
|
23506
23573
|
networkId: 7531,
|
|
23507
23574
|
icon: 'rome',
|
|
23508
23575
|
explorers: [
|
|
23509
23576
|
{
|
|
23510
|
-
name: 'Rome
|
|
23511
|
-
url: 'https://romescout-palatine
|
|
23577
|
+
name: 'Rome Palatine Explorer',
|
|
23578
|
+
url: 'https://romescout-palatine.romeprotocol.xyz',
|
|
23512
23579
|
icon: 'rome',
|
|
23513
23580
|
standard: 'EIP3091'
|
|
23514
23581
|
}
|
|
@@ -24626,7 +24693,7 @@ const chainArray = [
|
|
|
24626
24693
|
name: 'Alpen Testnet',
|
|
24627
24694
|
chain: 'alpen-testnet',
|
|
24628
24695
|
rpc: [ 'https://rpc.testnet.alpenlabs.io' ],
|
|
24629
|
-
faucets: [],
|
|
24696
|
+
faucets: [ 'https://faucet.testnet.alpenlabs.io' ],
|
|
24630
24697
|
nativeCurrency: { name: 'Signet BTC', symbol: 'sBTC', decimals: 18 },
|
|
24631
24698
|
features: [],
|
|
24632
24699
|
infoURL: 'https://alpenlabs.io/',
|
|
@@ -31749,7 +31816,7 @@ const chainArray = [
|
|
|
31749
31816
|
icon: 'dilithium3',
|
|
31750
31817
|
rpc: [
|
|
31751
31818
|
'https://rpc-testnet.dilithium3.com',
|
|
31752
|
-
'wss://
|
|
31819
|
+
'wss://ws-testnet.dilithium3.com'
|
|
31753
31820
|
],
|
|
31754
31821
|
faucets: [ 'https://faucet-testnet.dilithium3.com' ],
|
|
31755
31822
|
nativeCurrency: { name: 'Dilithium3', symbol: 'DLT', decimals: 18 },
|
|
@@ -31760,7 +31827,7 @@ const chainArray = [
|
|
|
31760
31827
|
slip44: 60,
|
|
31761
31828
|
explorers: [
|
|
31762
31829
|
{
|
|
31763
|
-
name: '
|
|
31830
|
+
name: 'Dilithium3 Explorer',
|
|
31764
31831
|
url: 'https://explorer-testnet.dilithium3.com',
|
|
31765
31832
|
standard: 'EIP3091'
|
|
31766
31833
|
}
|
|
@@ -33088,16 +33155,40 @@ const chainArray = [
|
|
|
33088
33155
|
]
|
|
33089
33156
|
},
|
|
33090
33157
|
{
|
|
33091
|
-
name: 'Tempo Testnet',
|
|
33158
|
+
name: 'Tempo Testnet Andantino (Deprecated)',
|
|
33092
33159
|
chain: 'ETH',
|
|
33093
33160
|
rpc: [ 'https://rpc.testnet.tempo.xyz' ],
|
|
33094
33161
|
faucets: [],
|
|
33095
33162
|
nativeCurrency: { name: 'No native currency', symbol: 'USD', decimals: 6 },
|
|
33096
33163
|
infoURL: 'https://tempo.xyz',
|
|
33097
|
-
shortName: '
|
|
33164
|
+
shortName: 'tempo-andantino',
|
|
33098
33165
|
chainId: 42429,
|
|
33099
33166
|
networkId: 42429,
|
|
33100
33167
|
icon: 'tempo',
|
|
33168
|
+
status: 'deprecated',
|
|
33169
|
+
explorers: [
|
|
33170
|
+
{
|
|
33171
|
+
name: 'tempo-explorer',
|
|
33172
|
+
url: 'https://explore.andantino.tempo.xyz',
|
|
33173
|
+
icon: 'tempo',
|
|
33174
|
+
standard: 'EIP3091'
|
|
33175
|
+
}
|
|
33176
|
+
]
|
|
33177
|
+
},
|
|
33178
|
+
{
|
|
33179
|
+
name: 'Tempo Testnet Moderato',
|
|
33180
|
+
chain: 'ETH',
|
|
33181
|
+
rpc: [
|
|
33182
|
+
'https://rpc.moderato.tempo.xyz',
|
|
33183
|
+
'wss://rpc.moderato.tempo.xyz'
|
|
33184
|
+
],
|
|
33185
|
+
faucets: [],
|
|
33186
|
+
nativeCurrency: { name: 'No native currency', symbol: 'USD', decimals: 6 },
|
|
33187
|
+
infoURL: 'https://tempo.xyz',
|
|
33188
|
+
shortName: 'tempo-moderato',
|
|
33189
|
+
chainId: 42431,
|
|
33190
|
+
networkId: 42431,
|
|
33191
|
+
icon: 'tempo',
|
|
33101
33192
|
explorers: [
|
|
33102
33193
|
{
|
|
33103
33194
|
name: 'tempo-explorer',
|
|
@@ -36827,6 +36918,30 @@ const chainArray = [
|
|
|
36827
36918
|
}
|
|
36828
36919
|
]
|
|
36829
36920
|
},
|
|
36921
|
+
{
|
|
36922
|
+
name: 'Nillion Network Sepolia Testnet',
|
|
36923
|
+
chain: 'ETH',
|
|
36924
|
+
icon: 'nillion',
|
|
36925
|
+
rpc: [
|
|
36926
|
+
'https://rpc.testnet.nillion.network',
|
|
36927
|
+
'wss://rpc.testnet.nillion.network'
|
|
36928
|
+
],
|
|
36929
|
+
faucets: [ 'https://faucet.testnet.nillion.network' ],
|
|
36930
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
36931
|
+
infoURL: 'https://nillion.com/',
|
|
36932
|
+
shortName: 'nilsep',
|
|
36933
|
+
chainId: 78651,
|
|
36934
|
+
networkId: 78651,
|
|
36935
|
+
slip44: 1,
|
|
36936
|
+
explorers: [
|
|
36937
|
+
{
|
|
36938
|
+
name: 'blockscout',
|
|
36939
|
+
url: 'https://explorer.testnet.nillion.network',
|
|
36940
|
+
icon: 'blockscout',
|
|
36941
|
+
standard: 'EIP3091'
|
|
36942
|
+
}
|
|
36943
|
+
]
|
|
36944
|
+
},
|
|
36830
36945
|
{
|
|
36831
36946
|
name: 'Gold Smart Chain Testnet',
|
|
36832
36947
|
chain: 'STAND',
|
|
@@ -38585,6 +38700,27 @@ const chainArray = [
|
|
|
38585
38700
|
bridges: [ { url: 'https://testnet-bridge.plume.org' } ]
|
|
38586
38701
|
}
|
|
38587
38702
|
},
|
|
38703
|
+
{
|
|
38704
|
+
name: 'Nillion Network',
|
|
38705
|
+
chain: 'ETH',
|
|
38706
|
+
icon: 'nillion',
|
|
38707
|
+
rpc: [ 'https://rpc.nillion.network', 'wss://rpc.nillion.network' ],
|
|
38708
|
+
faucets: [],
|
|
38709
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
38710
|
+
infoURL: 'https://nillion.com/',
|
|
38711
|
+
shortName: 'nil',
|
|
38712
|
+
chainId: 98875,
|
|
38713
|
+
networkId: 98875,
|
|
38714
|
+
slip44: 1,
|
|
38715
|
+
explorers: [
|
|
38716
|
+
{
|
|
38717
|
+
name: 'blockscout',
|
|
38718
|
+
url: 'https://explorer.nillion.network',
|
|
38719
|
+
icon: 'blockscout',
|
|
38720
|
+
standard: 'EIP3091'
|
|
38721
|
+
}
|
|
38722
|
+
]
|
|
38723
|
+
},
|
|
38588
38724
|
{
|
|
38589
38725
|
name: 'Ebi Chain',
|
|
38590
38726
|
title: 'Ebi Chain',
|
|
@@ -44011,6 +44147,32 @@ const chainArray = [
|
|
|
44011
44147
|
}
|
|
44012
44148
|
]
|
|
44013
44149
|
},
|
|
44150
|
+
{
|
|
44151
|
+
name: 'bokuto',
|
|
44152
|
+
chain: 'bokuto',
|
|
44153
|
+
rpc: [ 'https://rpc-bokuto.katanarpc.com' ],
|
|
44154
|
+
faucets: [ 'https://faucet.katana.tools' ],
|
|
44155
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
44156
|
+
infoURL: 'https://katana.network',
|
|
44157
|
+
shortName: 'bokuto',
|
|
44158
|
+
chainId: 737373,
|
|
44159
|
+
networkId: 737373,
|
|
44160
|
+
icon: 'katana',
|
|
44161
|
+
explorers: [
|
|
44162
|
+
{
|
|
44163
|
+
name: 'bokutoscan',
|
|
44164
|
+
url: 'https://bokuto.katanascan.com',
|
|
44165
|
+
icon: 'katana',
|
|
44166
|
+
standard: 'EIP3091'
|
|
44167
|
+
},
|
|
44168
|
+
{
|
|
44169
|
+
name: 'bokuto explorer',
|
|
44170
|
+
url: 'https://explorer-bokuto.katanarpc.com',
|
|
44171
|
+
icon: 'katana',
|
|
44172
|
+
standard: 'EIP3091'
|
|
44173
|
+
}
|
|
44174
|
+
]
|
|
44175
|
+
},
|
|
44014
44176
|
{
|
|
44015
44177
|
name: 'Hemi Sepolia',
|
|
44016
44178
|
chain: 'ETH',
|
|
@@ -44036,7 +44198,17 @@ const chainArray = [
|
|
|
44036
44198
|
{
|
|
44037
44199
|
name: 'katana',
|
|
44038
44200
|
chain: 'katana',
|
|
44039
|
-
rpc: [
|
|
44201
|
+
rpc: [
|
|
44202
|
+
'https://rpc.katana.network',
|
|
44203
|
+
'https://katana.gateway.tenderly.co/',
|
|
44204
|
+
'https://rpc.katanarpc.com/'
|
|
44205
|
+
],
|
|
44206
|
+
features: [
|
|
44207
|
+
{ name: 'EIP155' },
|
|
44208
|
+
{ name: 'EIP1559' },
|
|
44209
|
+
{ name: 'EIP4844' },
|
|
44210
|
+
{ name: 'EIP7702' }
|
|
44211
|
+
],
|
|
44040
44212
|
faucets: [],
|
|
44041
44213
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
44042
44214
|
infoURL: 'https://katana.network',
|
|
@@ -44045,13 +44217,24 @@ const chainArray = [
|
|
|
44045
44217
|
networkId: 747474,
|
|
44046
44218
|
icon: 'katana',
|
|
44047
44219
|
explorers: [
|
|
44220
|
+
{
|
|
44221
|
+
name: 'katanascan',
|
|
44222
|
+
url: 'https://katanascan.com',
|
|
44223
|
+
icon: 'katana',
|
|
44224
|
+
standard: 'EIP3091'
|
|
44225
|
+
},
|
|
44048
44226
|
{
|
|
44049
44227
|
name: 'katana explorer',
|
|
44050
44228
|
url: 'https://explorer.katanarpc.com',
|
|
44051
44229
|
icon: 'katana',
|
|
44052
44230
|
standard: 'EIP3091'
|
|
44053
44231
|
}
|
|
44054
|
-
]
|
|
44232
|
+
],
|
|
44233
|
+
parent: {
|
|
44234
|
+
type: 'L2',
|
|
44235
|
+
chain: 'eip155-1',
|
|
44236
|
+
bridges: [ { url: 'https://bridge.katana.network' } ]
|
|
44237
|
+
}
|
|
44055
44238
|
},
|
|
44056
44239
|
{
|
|
44057
44240
|
name: 'Bear Network Chain Testnet',
|
|
@@ -45189,6 +45372,25 @@ const chainArray = [
|
|
|
45189
45372
|
}
|
|
45190
45373
|
]
|
|
45191
45374
|
},
|
|
45375
|
+
{
|
|
45376
|
+
name: 'WebChain ETK',
|
|
45377
|
+
chain: 'WVM',
|
|
45378
|
+
rpc: [ 'https://rpc.webchain.e-talk.xyz' ],
|
|
45379
|
+
faucets: [],
|
|
45380
|
+
nativeCurrency: { name: 'ETK', symbol: 'ETK', decimals: 18 },
|
|
45381
|
+
shortName: 'wvm',
|
|
45382
|
+
infoURL: 'https://e-talk.xyz/webchain',
|
|
45383
|
+
chainId: 1000001,
|
|
45384
|
+
networkId: 1000001,
|
|
45385
|
+
explorers: [
|
|
45386
|
+
{
|
|
45387
|
+
name: 'WebChain Explorer',
|
|
45388
|
+
url: 'https://e-talk.xyz/webchain',
|
|
45389
|
+
standard: 'EIP3091'
|
|
45390
|
+
}
|
|
45391
|
+
],
|
|
45392
|
+
icon: 'webchain'
|
|
45393
|
+
},
|
|
45192
45394
|
{
|
|
45193
45395
|
name: 'Wirex Pay Testnet',
|
|
45194
45396
|
chain: 'WirexPay',
|
|
@@ -45851,6 +46053,26 @@ const chainArray = [
|
|
|
45851
46053
|
icon: 'coti',
|
|
45852
46054
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ]
|
|
45853
46055
|
},
|
|
46056
|
+
{
|
|
46057
|
+
name: 'Horizen Testnet',
|
|
46058
|
+
chain: 'horizen',
|
|
46059
|
+
rpc: [ 'https://horizen-testnet.rpc.caldera.xyz/http' ],
|
|
46060
|
+
faucets: [],
|
|
46061
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
46062
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
46063
|
+
infoURL: 'https://horizen-testnet.hub.caldera.xyz',
|
|
46064
|
+
shortName: 'horizen-testnet',
|
|
46065
|
+
chainId: 2651420,
|
|
46066
|
+
networkId: 2651420,
|
|
46067
|
+
icon: 'horizen',
|
|
46068
|
+
explorers: [
|
|
46069
|
+
{
|
|
46070
|
+
name: 'Horizen Testnet Caldera Explorer',
|
|
46071
|
+
url: 'https://horizen-testnet.explorer.caldera.xyz',
|
|
46072
|
+
standard: 'EIP3091'
|
|
46073
|
+
}
|
|
46074
|
+
]
|
|
46075
|
+
},
|
|
45854
46076
|
{
|
|
45855
46077
|
name: 'Xterio Chain (ETH)',
|
|
45856
46078
|
chain: 'Xterio',
|
|
@@ -47114,8 +47336,8 @@ const chainArray = [
|
|
|
47114
47336
|
rpc: [ 'https://testnet.riselabs.xyz', 'wss://testnet.riselabs.xyz/ws' ],
|
|
47115
47337
|
faucets: [ 'https://faucet.testnet.riselabs.xyz' ],
|
|
47116
47338
|
nativeCurrency: { name: 'RISE Testnet Ether', symbol: 'ETH', decimals: 18 },
|
|
47117
|
-
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
47118
|
-
infoURL: 'https://
|
|
47339
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' }, { name: 'EIP7702' } ],
|
|
47340
|
+
infoURL: 'https://risechain.com/',
|
|
47119
47341
|
shortName: 'rise-testnet',
|
|
47120
47342
|
chainId: 11155931,
|
|
47121
47343
|
networkId: 11155931,
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eth-chainlist",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.730",
|
|
4
4
|
"description": "List of EVM Chains",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"lint-staged": {
|
|
7
7
|
"./**/*.{ts,js,tsx,jsx}": [
|
|
8
|
-
"pnpm lint --fix",
|
|
9
|
-
"pnpm format"
|
|
8
|
+
"pnpm run lint --fix",
|
|
9
|
+
"pnpm run format"
|
|
10
10
|
]
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|