eth-chainlist 0.0.512 → 0.0.514
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +16 -0
- package/data/chain.js +84 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.514 (2024-10-12)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.513 ([07f53e7](https://github.com/poowf/eth-chainlist/commit/07f53e779792c4a7f3a535f3b4996cb9ab21d015))
|
9
|
+
* update chain data ([d523ffa](https://github.com/poowf/eth-chainlist/commit/d523ffa73aff185f1c9f02b104f91525f38ff48b))
|
10
|
+
|
11
|
+
### 0.0.513 (2024-10-11)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.512 ([167cc17](https://github.com/poowf/eth-chainlist/commit/167cc17e3cc0ef712716e64d95240b92a7e8b480))
|
17
|
+
* update chain data ([56dccc5](https://github.com/poowf/eth-chainlist/commit/56dccc57894c804cbbbb1383092f11b294b99f30))
|
18
|
+
|
3
19
|
### 0.0.512 (2024-10-10)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -2697,6 +2697,18 @@ const chainArray = [
|
|
2697
2697
|
}
|
2698
2698
|
]
|
2699
2699
|
},
|
2700
|
+
{
|
2701
|
+
name: 'Unichain',
|
2702
|
+
chain: 'ETH',
|
2703
|
+
rpc: [],
|
2704
|
+
faucets: [],
|
2705
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
2706
|
+
infoURL: 'https://unichain.org',
|
2707
|
+
shortName: 'unichain',
|
2708
|
+
chainId: 130,
|
2709
|
+
networkId: 130,
|
2710
|
+
status: 'incubating'
|
2711
|
+
},
|
2700
2712
|
{
|
2701
2713
|
name: 'Engram Testnet',
|
2702
2714
|
chain: 'tGRAM',
|
@@ -7921,7 +7933,10 @@ const chainArray = [
|
|
7921
7933
|
name: 'Taraxa Mainnet',
|
7922
7934
|
chain: 'Tara',
|
7923
7935
|
icon: 'taraxa',
|
7924
|
-
rpc: [
|
7936
|
+
rpc: [
|
7937
|
+
'https://rpc.mainnet.taraxa.io/',
|
7938
|
+
'https://ws.mainnet.taraxa.io'
|
7939
|
+
],
|
7925
7940
|
faucets: [],
|
7926
7941
|
nativeCurrency: { name: 'Tara', symbol: 'TARA', decimals: 18 },
|
7927
7942
|
infoURL: 'https://taraxa.io',
|
@@ -7940,7 +7955,10 @@ const chainArray = [
|
|
7940
7955
|
name: 'Taraxa Testnet',
|
7941
7956
|
chain: 'Tara',
|
7942
7957
|
icon: 'taraxa',
|
7943
|
-
rpc: [
|
7958
|
+
rpc: [
|
7959
|
+
'https://rpc.testnet.taraxa.io/',
|
7960
|
+
'https://ws.testnet.taraxa.io'
|
7961
|
+
],
|
7944
7962
|
faucets: [],
|
7945
7963
|
nativeCurrency: { name: 'Tara', symbol: 'TARA', decimals: 18 },
|
7946
7964
|
infoURL: 'https://taraxa.io',
|
@@ -10564,6 +10582,29 @@ const chainArray = [
|
|
10564
10582
|
}
|
10565
10583
|
]
|
10566
10584
|
},
|
10585
|
+
{
|
10586
|
+
name: 'Unichain Sepolia Testnet',
|
10587
|
+
chain: 'ETH',
|
10588
|
+
rpc: [ 'https://sepolia.unichain.org' ],
|
10589
|
+
faucets: [],
|
10590
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
10591
|
+
infoURL: 'https://unichain.org',
|
10592
|
+
shortName: 'unichain-sep',
|
10593
|
+
chainId: 1301,
|
10594
|
+
networkId: 1301,
|
10595
|
+
explorers: [
|
10596
|
+
{
|
10597
|
+
name: 'Unichain Sepolia Testnet Explorer',
|
10598
|
+
url: 'https://unichain-sepolia.blockscout.com',
|
10599
|
+
standard: 'EIP3091'
|
10600
|
+
},
|
10601
|
+
{
|
10602
|
+
name: 'Unichain Sepolia Testnet Explorer',
|
10603
|
+
url: 'https://sepolia.uniscan.xyz',
|
10604
|
+
standard: 'EIP3091'
|
10605
|
+
}
|
10606
|
+
]
|
10607
|
+
},
|
10567
10608
|
{
|
10568
10609
|
name: 'Dos Fuji Subnet',
|
10569
10610
|
chain: 'DOS',
|
@@ -21783,6 +21824,7 @@ const chainArray = [
|
|
21783
21824
|
{
|
21784
21825
|
name: 'MFEV CHAIN',
|
21785
21826
|
url: 'https://mfevscan.com',
|
21827
|
+
icon: 'mfev',
|
21786
21828
|
standard: 'EIP3091'
|
21787
21829
|
}
|
21788
21830
|
]
|
@@ -29318,7 +29360,7 @@ const chainArray = [
|
|
29318
29360
|
'wss://polygon-amoy-bor-rpc.publicnode.com'
|
29319
29361
|
],
|
29320
29362
|
faucets: [ 'https://faucet.polygon.technology/' ],
|
29321
|
-
nativeCurrency: { name: '
|
29363
|
+
nativeCurrency: { name: 'POL', symbol: 'POL', decimals: 18 },
|
29322
29364
|
infoURL: 'https://polygon.technology/',
|
29323
29365
|
shortName: 'polygonamoy',
|
29324
29366
|
chainId: 80002,
|
@@ -33100,6 +33142,19 @@ const chainArray = [
|
|
33100
33142
|
}
|
33101
33143
|
]
|
33102
33144
|
},
|
33145
|
+
{
|
33146
|
+
name: 'CheeseChain',
|
33147
|
+
title: 'CheeseChain',
|
33148
|
+
chain: 'CHEESE',
|
33149
|
+
rpc: [ 'https://rpc.cheesechain.xyz' ],
|
33150
|
+
faucets: [],
|
33151
|
+
nativeCurrency: { name: 'CHEESE', symbol: 'CHEESE', decimals: 18 },
|
33152
|
+
infoURL: 'https://cheesechain.xyz',
|
33153
|
+
shortName: 'CheeseChain',
|
33154
|
+
chainId: 383353,
|
33155
|
+
networkId: 383353,
|
33156
|
+
icon: 'cheesechain'
|
33157
|
+
},
|
33103
33158
|
{
|
33104
33159
|
name: 'Tipboxcoin Mainnet',
|
33105
33160
|
chain: 'TPBX',
|
@@ -38306,6 +38361,32 @@ const chainArray = [
|
|
38306
38361
|
}
|
38307
38362
|
]
|
38308
38363
|
},
|
38364
|
+
{
|
38365
|
+
name: 'Haust Testnet',
|
38366
|
+
title: 'Haust Testnet',
|
38367
|
+
chain: 'Haust-testnet',
|
38368
|
+
rpc: [ 'https://rpc-test.haust.network' ],
|
38369
|
+
faucets: [ 'https://haust-testnet-faucet.eu-north-2.gateway.fm' ],
|
38370
|
+
nativeCurrency: { name: 'HAUST', symbol: 'HAUST', decimals: 18 },
|
38371
|
+
infoURL: 'https://haust.network/',
|
38372
|
+
shortName: 'hst-test',
|
38373
|
+
chainId: 1570754601,
|
38374
|
+
networkId: 1570754601,
|
38375
|
+
icon: 'haust',
|
38376
|
+
explorers: [
|
38377
|
+
{
|
38378
|
+
name: 'blockscout',
|
38379
|
+
url: 'https://haust-testnet-blockscout.eu-north-2.gateway.fm',
|
38380
|
+
icon: 'haust',
|
38381
|
+
standard: 'EIP3091'
|
38382
|
+
}
|
38383
|
+
],
|
38384
|
+
parent: {
|
38385
|
+
type: 'L2',
|
38386
|
+
chain: 'eip155-11155111',
|
38387
|
+
bridges: [ { url: 'https://haust-testnet-bridge.eu-north-2.gateway.fm' } ]
|
38388
|
+
}
|
38389
|
+
},
|
38309
38390
|
{
|
38310
38391
|
name: 'Harmony Mainnet Shard 0',
|
38311
38392
|
chain: 'Harmony',
|