eth-chainlist 0.0.406 → 0.0.407
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 +8 -0
- package/data/chain.js +212 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.407 (2024-05-19)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.406 ([5a8e3c7](https://github.com/poowf/eth-chainlist/commit/5a8e3c78d9d160cfc4cdc9c58ae39c88bf825b44))
|
9
|
+
* update chain data ([a54cf4e](https://github.com/poowf/eth-chainlist/commit/a54cf4e6e3e4ed5fbafed36f90597853e662c393))
|
10
|
+
|
3
11
|
### 0.0.406 (2024-05-17)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -6304,7 +6304,8 @@ const chainArray = [
|
|
6304
6304
|
type: 'L2',
|
6305
6305
|
chain: 'eip155-4',
|
6306
6306
|
bridges: [ { url: 'https://testnet-bridge.metis.io' } ]
|
6307
|
-
}
|
6307
|
+
},
|
6308
|
+
status: 'deprecated'
|
6308
6309
|
},
|
6309
6310
|
{
|
6310
6311
|
name: 'Meshnyan testnet',
|
@@ -7778,6 +7779,25 @@ const chainArray = [
|
|
7778
7779
|
}
|
7779
7780
|
]
|
7780
7781
|
},
|
7782
|
+
{
|
7783
|
+
name: 'EthXY',
|
7784
|
+
chain: 'EthXY',
|
7785
|
+
rpc: [ 'https://rpc.ethxy.com' ],
|
7786
|
+
faucets: [],
|
7787
|
+
nativeCurrency: { name: 'Settled EthXY Token', symbol: 'SEXY', decimals: 18 },
|
7788
|
+
icon: 'sexy',
|
7789
|
+
infoURL: 'https://ethxy.com',
|
7790
|
+
shortName: 'sexy',
|
7791
|
+
chainId: 969,
|
7792
|
+
networkId: 969,
|
7793
|
+
explorers: [
|
7794
|
+
{
|
7795
|
+
name: 'EthXY Network Explorer',
|
7796
|
+
url: 'https://explorer.ethxy.com',
|
7797
|
+
standard: 'EIP3091'
|
7798
|
+
}
|
7799
|
+
]
|
7800
|
+
},
|
7781
7801
|
{
|
7782
7802
|
name: 'Oort Mainnet',
|
7783
7803
|
chain: 'Oort Mainnet',
|
@@ -10368,6 +10388,46 @@ const chainArray = [
|
|
10368
10388
|
}
|
10369
10389
|
]
|
10370
10390
|
},
|
10391
|
+
{
|
10392
|
+
name: 'Metal L2 Testnet',
|
10393
|
+
chain: 'Metal L2 Testnet',
|
10394
|
+
rpc: [ 'https://testnet.rpc.metall2.com' ],
|
10395
|
+
faucets: [],
|
10396
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
10397
|
+
infoURL: 'https://metall2.com',
|
10398
|
+
shortName: 'metall2-testnet',
|
10399
|
+
chainId: 1740,
|
10400
|
+
networkId: 1740,
|
10401
|
+
icon: 'metal',
|
10402
|
+
explorers: [
|
10403
|
+
{
|
10404
|
+
name: 'blockscout',
|
10405
|
+
url: 'https://testnet.explorer.metall2.com',
|
10406
|
+
icon: 'blockscout',
|
10407
|
+
standard: 'EIP3091'
|
10408
|
+
}
|
10409
|
+
]
|
10410
|
+
},
|
10411
|
+
{
|
10412
|
+
name: 'Metal L2',
|
10413
|
+
chain: 'Metal L2',
|
10414
|
+
rpc: [ 'https://rpc.metall2.com' ],
|
10415
|
+
faucets: [],
|
10416
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
10417
|
+
infoURL: 'https://metall2.com',
|
10418
|
+
shortName: 'metall2',
|
10419
|
+
chainId: 1750,
|
10420
|
+
networkId: 1750,
|
10421
|
+
icon: 'metal',
|
10422
|
+
explorers: [
|
10423
|
+
{
|
10424
|
+
name: 'blockscout',
|
10425
|
+
url: 'https://explorer.metall2.com',
|
10426
|
+
icon: 'blockscout',
|
10427
|
+
standard: 'EIP3091'
|
10428
|
+
}
|
10429
|
+
]
|
10430
|
+
},
|
10371
10431
|
{
|
10372
10432
|
name: 'PartyChain',
|
10373
10433
|
chain: 'mainnet',
|
@@ -15101,9 +15161,10 @@ const chainArray = [
|
|
15101
15161
|
faucets: [],
|
15102
15162
|
nativeCurrency: { name: 'ONIGIRI', symbol: 'ONGR', decimals: 18 },
|
15103
15163
|
infoURL: 'https://www.ongr.org/',
|
15104
|
-
shortName: '
|
15164
|
+
shortName: 'onigiritest',
|
15105
15165
|
chainId: 5039,
|
15106
15166
|
networkId: 5039,
|
15167
|
+
icon: 'onigiri',
|
15107
15168
|
explorers: [
|
15108
15169
|
{
|
15109
15170
|
name: 'ONIGIRI Explorer',
|
@@ -15112,6 +15173,26 @@ const chainArray = [
|
|
15112
15173
|
}
|
15113
15174
|
]
|
15114
15175
|
},
|
15176
|
+
{
|
15177
|
+
name: 'ONIGIRI Subnet',
|
15178
|
+
chain: 'ONIGIRI',
|
15179
|
+
rpc: [ 'https://subnets.avax.network/onigiri/mainnet/rpc' ],
|
15180
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
15181
|
+
faucets: [],
|
15182
|
+
nativeCurrency: { name: 'ONIGIRI', symbol: 'ONGR', decimals: 18 },
|
15183
|
+
infoURL: 'https://www.ongr.org/',
|
15184
|
+
shortName: 'onigiri',
|
15185
|
+
chainId: 5040,
|
15186
|
+
networkId: 5040,
|
15187
|
+
icon: 'onigiri',
|
15188
|
+
explorers: [
|
15189
|
+
{
|
15190
|
+
name: 'ONIGIRI Explorer',
|
15191
|
+
url: 'https://subnets.avax.network/onigiri',
|
15192
|
+
standard: 'EIP3091'
|
15193
|
+
}
|
15194
|
+
]
|
15195
|
+
},
|
15115
15196
|
{
|
15116
15197
|
name: 'Nollie Skatechain Testnet',
|
15117
15198
|
chain: 'Skatechain',
|
@@ -19322,6 +19403,54 @@ const chainArray = [
|
|
19322
19403
|
networkId: 12321,
|
19323
19404
|
slip44: 1
|
19324
19405
|
},
|
19406
|
+
{
|
19407
|
+
name: 'L3X Protocol',
|
19408
|
+
chainId: 12324,
|
19409
|
+
shortName: 'l3x',
|
19410
|
+
chain: 'L3X',
|
19411
|
+
icon: 'l3x',
|
19412
|
+
networkId: 12324,
|
19413
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
19414
|
+
rpc: [ 'https://rpc-mainnet.l3x.com' ],
|
19415
|
+
faucets: [],
|
19416
|
+
explorers: [
|
19417
|
+
{
|
19418
|
+
name: 'L3X Mainnet Explorer',
|
19419
|
+
url: 'https://explorer.l3x.com',
|
19420
|
+
standard: 'EIP3091'
|
19421
|
+
}
|
19422
|
+
],
|
19423
|
+
infoURL: 'https://l3x.com',
|
19424
|
+
parent: {
|
19425
|
+
type: 'L2',
|
19426
|
+
chain: 'eip155-42161',
|
19427
|
+
bridges: [ { url: 'https://bridge.arbitrum.io' } ]
|
19428
|
+
}
|
19429
|
+
},
|
19430
|
+
{
|
19431
|
+
name: 'L3X Protocol Testnet',
|
19432
|
+
chainId: 12325,
|
19433
|
+
shortName: 'l3x-testnet',
|
19434
|
+
chain: 'L3X',
|
19435
|
+
icon: 'l3x',
|
19436
|
+
networkId: 12325,
|
19437
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
19438
|
+
rpc: [ 'https://rpc-testnet.l3x.com' ],
|
19439
|
+
faucets: [],
|
19440
|
+
explorers: [
|
19441
|
+
{
|
19442
|
+
name: 'L3X Testnet Explorer',
|
19443
|
+
url: 'https://explorer-testnet.l3x.com',
|
19444
|
+
standard: 'EIP3091'
|
19445
|
+
}
|
19446
|
+
],
|
19447
|
+
infoURL: 'https://l3x.com',
|
19448
|
+
parent: {
|
19449
|
+
type: 'L2',
|
19450
|
+
chain: 'eip155-421614',
|
19451
|
+
bridges: [ { url: 'https://bridge.arbitrum.io' } ]
|
19452
|
+
}
|
19453
|
+
},
|
19325
19454
|
{
|
19326
19455
|
name: 'Step Testnet',
|
19327
19456
|
title: 'Step Test Network',
|
@@ -19806,6 +19935,27 @@ const chainArray = [
|
|
19806
19935
|
networkId: 16001,
|
19807
19936
|
slip44: 1
|
19808
19937
|
},
|
19938
|
+
{
|
19939
|
+
name: 'DeFiVerse Mainnet',
|
19940
|
+
chain: 'DeFiVerse',
|
19941
|
+
icon: 'defiverse',
|
19942
|
+
rpc: [ 'https://rpc.defi-verse.org/' ],
|
19943
|
+
faucets: [],
|
19944
|
+
nativeCurrency: { name: 'Oasys', symbol: 'OAS', decimals: 18 },
|
19945
|
+
infoURL: 'https://defi-verse.org',
|
19946
|
+
shortName: 'DFV',
|
19947
|
+
chainId: 16116,
|
19948
|
+
networkId: 16116,
|
19949
|
+
explorers: [
|
19950
|
+
{
|
19951
|
+
name: 'DeFiVerse Explorer',
|
19952
|
+
url: 'https://scan.defi-verse.org',
|
19953
|
+
icon: 'defiverse',
|
19954
|
+
standard: 'EIP3091'
|
19955
|
+
}
|
19956
|
+
],
|
19957
|
+
parent: { type: 'L2', chain: 'eip155-248' }
|
19958
|
+
},
|
19809
19959
|
{
|
19810
19960
|
name: 'Genesys Mainnet',
|
19811
19961
|
chain: 'Genesys',
|
@@ -19978,6 +20128,26 @@ const chainArray = [
|
|
19978
20128
|
bridges: [ { url: 'https://garnetchain.com/deposit' } ]
|
19979
20129
|
}
|
19980
20130
|
},
|
20131
|
+
{
|
20132
|
+
name: 'DeFiVerse Testnet',
|
20133
|
+
chain: 'DeFiVerse Testnet',
|
20134
|
+
icon: 'defiverse',
|
20135
|
+
rpc: [ 'https://rpc-testnet.defi-verse.org/' ],
|
20136
|
+
faucets: [],
|
20137
|
+
nativeCurrency: { name: 'Oasys', symbol: 'OAS', decimals: 18 },
|
20138
|
+
infoURL: 'https://defi-verse.org',
|
20139
|
+
shortName: 'DFV-testnet',
|
20140
|
+
chainId: 17117,
|
20141
|
+
networkId: 17117,
|
20142
|
+
explorers: [
|
20143
|
+
{
|
20144
|
+
name: 'DeFiVerse Testnet Explorer',
|
20145
|
+
url: 'https://scan-testnet.defi-verse.org',
|
20146
|
+
icon: 'defiverse',
|
20147
|
+
standard: 'EIP3091'
|
20148
|
+
}
|
20149
|
+
]
|
20150
|
+
},
|
19981
20151
|
{
|
19982
20152
|
name: 'G8Chain Mainnet',
|
19983
20153
|
chain: 'G8C',
|
@@ -29476,6 +29646,28 @@ const chainArray = [
|
|
29476
29646
|
}
|
29477
29647
|
]
|
29478
29648
|
},
|
29649
|
+
{
|
29650
|
+
name: 'ALIENX Hal Testnet',
|
29651
|
+
chain: 'ALIENX Hal',
|
29652
|
+
rpc: [
|
29653
|
+
'https://hal-rpc.alienxchain.io/http',
|
29654
|
+
'https://hal.rpc.caldera.xyz/http'
|
29655
|
+
],
|
29656
|
+
faucets: [],
|
29657
|
+
nativeCurrency: { name: 'Ethereum', symbol: 'ETH', decimals: 18 },
|
29658
|
+
infoURL: 'https://alienxchain.io/home',
|
29659
|
+
shortName: 'ALIENXHal',
|
29660
|
+
chainId: 10241025,
|
29661
|
+
networkId: 10241025,
|
29662
|
+
icon: 'hal',
|
29663
|
+
explorers: [
|
29664
|
+
{
|
29665
|
+
name: 'Hal Explorer',
|
29666
|
+
url: 'https://hal-explorer.alienxchain.io',
|
29667
|
+
standard: 'EIP3091'
|
29668
|
+
}
|
29669
|
+
]
|
29670
|
+
},
|
29479
29671
|
{
|
29480
29672
|
name: 'Sepolia',
|
29481
29673
|
title: 'Ethereum Testnet Sepolia',
|
@@ -29752,6 +29944,24 @@ const chainArray = [
|
|
29752
29944
|
}
|
29753
29945
|
]
|
29754
29946
|
},
|
29947
|
+
{
|
29948
|
+
name: 'Swan Proxima Testnet',
|
29949
|
+
chain: 'SWAN',
|
29950
|
+
rpc: [ 'https://rpc-proxima.swanchain.io' ],
|
29951
|
+
faucets: [],
|
29952
|
+
nativeCurrency: { name: 'SWANETH', symbol: 'sETH', decimals: 18 },
|
29953
|
+
infoURL: 'https://swanchain.io/',
|
29954
|
+
shortName: 'Proxima',
|
29955
|
+
chainId: 20241133,
|
29956
|
+
networkId: 20241133,
|
29957
|
+
explorers: [
|
29958
|
+
{
|
29959
|
+
name: 'Swan Proxima Chain explorer',
|
29960
|
+
url: 'https://proxima-explorer.swanchain.io',
|
29961
|
+
standard: 'EIP3091'
|
29962
|
+
}
|
29963
|
+
]
|
29964
|
+
},
|
29755
29965
|
{
|
29756
29966
|
name: 'Hokum Testnet',
|
29757
29967
|
chain: 'HokumTestnet',
|