eth-chainlist 0.0.511 → 0.0.513
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 +151 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.513 (2024-10-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.512 ([167cc17](https://github.com/poowf/eth-chainlist/commit/167cc17e3cc0ef712716e64d95240b92a7e8b480))
|
|
9
|
+
* update chain data ([56dccc5](https://github.com/poowf/eth-chainlist/commit/56dccc57894c804cbbbb1383092f11b294b99f30))
|
|
10
|
+
|
|
11
|
+
### 0.0.512 (2024-10-10)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.511 ([ff7153c](https://github.com/poowf/eth-chainlist/commit/ff7153ccb3e3fe95d2dc1a8b9f62796315ca3056))
|
|
17
|
+
* update chain data ([5839f78](https://github.com/poowf/eth-chainlist/commit/5839f78bd97e6e6d84ee47d0b37d6649c64101e4))
|
|
18
|
+
|
|
3
19
|
### 0.0.511 (2024-10-09)
|
|
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
|
]
|
|
@@ -28517,7 +28559,10 @@ const chainArray = [
|
|
|
28517
28559
|
{
|
|
28518
28560
|
name: 'Automata Mainnet',
|
|
28519
28561
|
chain: 'Automata Mainnet',
|
|
28520
|
-
rpc: [
|
|
28562
|
+
rpc: [
|
|
28563
|
+
'https://rpc.ata.network',
|
|
28564
|
+
'https://automata-mainnet.alt.technology/'
|
|
28565
|
+
],
|
|
28521
28566
|
faucets: [],
|
|
28522
28567
|
nativeCurrency: { name: 'ATA', symbol: 'ATA', decimals: 18 },
|
|
28523
28568
|
infoURL: 'https://ata.network',
|
|
@@ -28525,7 +28570,13 @@ const chainArray = [
|
|
|
28525
28570
|
chainId: 65536,
|
|
28526
28571
|
networkId: 65536,
|
|
28527
28572
|
icon: 'automata',
|
|
28528
|
-
explorers: [
|
|
28573
|
+
explorers: [
|
|
28574
|
+
{
|
|
28575
|
+
name: 'Automata Explorer',
|
|
28576
|
+
url: 'https://explorer.ata.network',
|
|
28577
|
+
standard: 'EIP3091'
|
|
28578
|
+
}
|
|
28579
|
+
]
|
|
28529
28580
|
},
|
|
28530
28581
|
{
|
|
28531
28582
|
name: 'Creator Chain Testnet',
|
|
@@ -33091,6 +33142,19 @@ const chainArray = [
|
|
|
33091
33142
|
}
|
|
33092
33143
|
]
|
|
33093
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
|
+
},
|
|
33094
33158
|
{
|
|
33095
33159
|
name: 'Tipboxcoin Mainnet',
|
|
33096
33160
|
chain: 'TPBX',
|
|
@@ -35114,7 +35178,10 @@ const chainArray = [
|
|
|
35114
35178
|
{
|
|
35115
35179
|
name: 'Automata Testnet',
|
|
35116
35180
|
chain: 'Automata Testnet',
|
|
35117
|
-
rpc: [
|
|
35181
|
+
rpc: [
|
|
35182
|
+
'https://rpc-testnet.ata.network',
|
|
35183
|
+
'https://automata-testnet.alt.technology'
|
|
35184
|
+
],
|
|
35118
35185
|
faucets: [],
|
|
35119
35186
|
nativeCurrency: { name: 'ATA', symbol: 'ATA', decimals: 18 },
|
|
35120
35187
|
infoURL: 'https://ata.network',
|
|
@@ -35125,7 +35192,7 @@ const chainArray = [
|
|
|
35125
35192
|
explorers: [
|
|
35126
35193
|
{
|
|
35127
35194
|
name: 'Automata Testnet Explorer',
|
|
35128
|
-
url: 'https://
|
|
35195
|
+
url: 'https://explorer-testnet.ata.network',
|
|
35129
35196
|
standard: 'EIP3091'
|
|
35130
35197
|
}
|
|
35131
35198
|
]
|
|
@@ -37903,6 +37970,31 @@ const chainArray = [
|
|
|
37903
37970
|
}
|
|
37904
37971
|
]
|
|
37905
37972
|
},
|
|
37973
|
+
{
|
|
37974
|
+
name: 'Lumia Mainnet',
|
|
37975
|
+
shortName: 'lumia-mainnet',
|
|
37976
|
+
title: 'Lumia Mainnet',
|
|
37977
|
+
chain: 'ETH',
|
|
37978
|
+
icon: 'lumia',
|
|
37979
|
+
rpc: [ 'https://mainnet-rpc.lumia.org' ],
|
|
37980
|
+
faucets: [],
|
|
37981
|
+
nativeCurrency: { name: 'Lumia', symbol: 'LUMIA', decimals: 18 },
|
|
37982
|
+
infoURL: 'https://lumia.org',
|
|
37983
|
+
chainId: 994873017,
|
|
37984
|
+
networkId: 994873017,
|
|
37985
|
+
explorers: [
|
|
37986
|
+
{
|
|
37987
|
+
name: 'Lumia Mainnet Explorer',
|
|
37988
|
+
url: 'https://explorer.lumia.org',
|
|
37989
|
+
standard: 'EIP3091'
|
|
37990
|
+
}
|
|
37991
|
+
],
|
|
37992
|
+
parent: {
|
|
37993
|
+
type: 'L2',
|
|
37994
|
+
chain: 'eip155-1',
|
|
37995
|
+
bridges: [ { url: 'https://bridge.lumia.org' } ]
|
|
37996
|
+
}
|
|
37997
|
+
},
|
|
37906
37998
|
{
|
|
37907
37999
|
name: 'Zora Sepolia Testnet',
|
|
37908
38000
|
chain: 'ETH',
|
|
@@ -38269,6 +38361,32 @@ const chainArray = [
|
|
|
38269
38361
|
}
|
|
38270
38362
|
]
|
|
38271
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
|
+
},
|
|
38272
38390
|
{
|
|
38273
38391
|
name: 'Harmony Mainnet Shard 0',
|
|
38274
38392
|
chain: 'Harmony',
|
|
@@ -38516,6 +38634,33 @@ const chainArray = [
|
|
|
38516
38634
|
}
|
|
38517
38635
|
]
|
|
38518
38636
|
},
|
|
38637
|
+
{
|
|
38638
|
+
name: 'Lumia Testnet',
|
|
38639
|
+
shortName: 'lumiatestnet',
|
|
38640
|
+
title: 'Lumia Testnet',
|
|
38641
|
+
chain: 'ETH',
|
|
38642
|
+
icon: 'lumia',
|
|
38643
|
+
rpc: [ 'https://testnet-rpc.lumia.org' ],
|
|
38644
|
+
faucets: [ 'https://testnet-faucet.lumia.org' ],
|
|
38645
|
+
nativeCurrency: { name: 'Lumia', symbol: 'LUMIA', decimals: 18 },
|
|
38646
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
38647
|
+
infoURL: 'https://lumia.org',
|
|
38648
|
+
chainId: 1952959480,
|
|
38649
|
+
networkId: 1952959480,
|
|
38650
|
+
explorers: [
|
|
38651
|
+
{
|
|
38652
|
+
name: 'Lumia Testnet Explorer',
|
|
38653
|
+
url: 'https://testnet-explorer.lumia.org',
|
|
38654
|
+
icon: 'lumia',
|
|
38655
|
+
standard: 'EIP3091'
|
|
38656
|
+
}
|
|
38657
|
+
],
|
|
38658
|
+
parent: {
|
|
38659
|
+
type: 'L2',
|
|
38660
|
+
chain: 'eip155-1',
|
|
38661
|
+
bridges: [ { url: 'https://testnet-bridge.lumia.org' } ]
|
|
38662
|
+
}
|
|
38663
|
+
},
|
|
38519
38664
|
{
|
|
38520
38665
|
name: 'DataHopper',
|
|
38521
38666
|
chain: 'HOP',
|