eth-chainlist 0.0.527 → 0.0.528
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 +227 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.528 (2024-11-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.527 ([e3c6cb1](https://github.com/poowf/eth-chainlist/commit/e3c6cb1126df8e849ad3e87e20974f90203823cc))
|
|
9
|
+
* update chain data ([9266c12](https://github.com/poowf/eth-chainlist/commit/9266c128c865269183f5a3c8283266d6b3a96b2d))
|
|
10
|
+
|
|
3
11
|
### 0.0.527 (2024-10-31)
|
|
4
12
|
|
|
5
13
|
|
package/data/chain.js
CHANGED
|
@@ -10742,6 +10742,28 @@ const chainArray = [
|
|
|
10742
10742
|
}
|
|
10743
10743
|
]
|
|
10744
10744
|
},
|
|
10745
|
+
{
|
|
10746
|
+
name: 'Argochain',
|
|
10747
|
+
chain: 'Argochain',
|
|
10748
|
+
icon: 'argochain',
|
|
10749
|
+
rpc: [
|
|
10750
|
+
'https://rpc.devolvedai.com',
|
|
10751
|
+
'https://rpc-mainnet.devolvedai.com'
|
|
10752
|
+
],
|
|
10753
|
+
faucets: [],
|
|
10754
|
+
nativeCurrency: { name: 'AGC', symbol: 'AGC', decimals: 18 },
|
|
10755
|
+
infoURL: 'https://devolvedai.com',
|
|
10756
|
+
shortName: 'AGC',
|
|
10757
|
+
chainId: 1299,
|
|
10758
|
+
networkId: 1299,
|
|
10759
|
+
explorers: [
|
|
10760
|
+
{
|
|
10761
|
+
name: 'Argochain Scanner',
|
|
10762
|
+
url: 'https://scanner.argoscan.net',
|
|
10763
|
+
standard: 'EIP3091'
|
|
10764
|
+
}
|
|
10765
|
+
]
|
|
10766
|
+
},
|
|
10745
10767
|
{
|
|
10746
10768
|
name: 'Unichain Sepolia Testnet',
|
|
10747
10769
|
chain: 'ETH',
|
|
@@ -11718,6 +11740,7 @@ const chainArray = [
|
|
|
11718
11740
|
shortName: 'minttest',
|
|
11719
11741
|
chainId: 1686,
|
|
11720
11742
|
networkId: 1686,
|
|
11743
|
+
status: 'deprecated',
|
|
11721
11744
|
icon: 'mintTestnet',
|
|
11722
11745
|
explorers: [
|
|
11723
11746
|
{
|
|
@@ -12446,6 +12469,25 @@ const chainArray = [
|
|
|
12446
12469
|
networkId: 1918,
|
|
12447
12470
|
explorers: []
|
|
12448
12471
|
},
|
|
12472
|
+
{
|
|
12473
|
+
name: 'Swell Network',
|
|
12474
|
+
chain: 'Swell L2',
|
|
12475
|
+
rpc: [ 'https://swell-mainnet.alt.technology' ],
|
|
12476
|
+
faucets: [],
|
|
12477
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
12478
|
+
infoURL: 'https://app.swellnetwork.io/layer2/swell-l2',
|
|
12479
|
+
shortName: 'swell-l2',
|
|
12480
|
+
chainId: 1923,
|
|
12481
|
+
networkId: 1923,
|
|
12482
|
+
explorers: [
|
|
12483
|
+
{
|
|
12484
|
+
name: 'swell-l2',
|
|
12485
|
+
icon: 'swell',
|
|
12486
|
+
url: 'https://swell-mainnet-explorer.alt.technology',
|
|
12487
|
+
standard: 'none'
|
|
12488
|
+
}
|
|
12489
|
+
]
|
|
12490
|
+
},
|
|
12449
12491
|
{
|
|
12450
12492
|
name: 'Arvix Testnet',
|
|
12451
12493
|
chain: 'Arvix',
|
|
@@ -19758,6 +19800,26 @@ const chainArray = [
|
|
|
19758
19800
|
}
|
|
19759
19801
|
]
|
|
19760
19802
|
},
|
|
19803
|
+
{
|
|
19804
|
+
name: 'Phron Testnet',
|
|
19805
|
+
chain: 'PHR',
|
|
19806
|
+
icon: 'phron',
|
|
19807
|
+
rpc: [ 'https://testnet.phron.ai', 'wss://testnet.phron.ai' ],
|
|
19808
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
19809
|
+
faucets: [ 'https://faucet.phron.ai' ],
|
|
19810
|
+
nativeCurrency: { name: 'Phron', symbol: 'TPHR', decimals: 18 },
|
|
19811
|
+
infoURL: 'https://phron.ai',
|
|
19812
|
+
shortName: 'phr',
|
|
19813
|
+
chainId: 7744,
|
|
19814
|
+
networkId: 7744,
|
|
19815
|
+
explorers: [
|
|
19816
|
+
{
|
|
19817
|
+
name: 'phronscan',
|
|
19818
|
+
url: 'https://testnet.phronscan.io',
|
|
19819
|
+
standard: 'EIP3091'
|
|
19820
|
+
}
|
|
19821
|
+
]
|
|
19822
|
+
},
|
|
19761
19823
|
{
|
|
19762
19824
|
name: 'Bitrock Testnet',
|
|
19763
19825
|
chain: 'Bitrock',
|
|
@@ -22103,6 +22165,25 @@ const chainArray = [
|
|
|
22103
22165
|
}
|
|
22104
22166
|
]
|
|
22105
22167
|
},
|
|
22168
|
+
{
|
|
22169
|
+
name: 'Zytron Linea Mainnet',
|
|
22170
|
+
chain: 'ETH',
|
|
22171
|
+
icon: 'zytron',
|
|
22172
|
+
rpc: [ 'https://rpc.zypher.network/' ],
|
|
22173
|
+
faucets: [],
|
|
22174
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
|
22175
|
+
infoURL: 'https://zytron.zypher.network/',
|
|
22176
|
+
shortName: 'zytron-linea',
|
|
22177
|
+
chainId: 9901,
|
|
22178
|
+
networkId: 9901,
|
|
22179
|
+
explorers: [
|
|
22180
|
+
{
|
|
22181
|
+
name: 'blockscout',
|
|
22182
|
+
url: 'https://explorer.zypher.network',
|
|
22183
|
+
standard: 'EIP3091'
|
|
22184
|
+
}
|
|
22185
|
+
]
|
|
22186
|
+
},
|
|
22106
22187
|
{
|
|
22107
22188
|
name: 'Espento Mainnet',
|
|
22108
22189
|
chain: 'SPENT',
|
|
@@ -24887,6 +24968,25 @@ const chainArray = [
|
|
|
24887
24968
|
networkId: 19527,
|
|
24888
24969
|
explorers: []
|
|
24889
24970
|
},
|
|
24971
|
+
{
|
|
24972
|
+
name: 'Zytron Linea Testnet',
|
|
24973
|
+
chain: 'ETH',
|
|
24974
|
+
icon: 'zytron',
|
|
24975
|
+
rpc: [ 'https://linea-testnet-zytron.zypher.game/' ],
|
|
24976
|
+
faucets: [],
|
|
24977
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
|
24978
|
+
infoURL: 'https://zytron.zypher.network/',
|
|
24979
|
+
shortName: 'zytron-linea-testnet',
|
|
24980
|
+
chainId: 19546,
|
|
24981
|
+
networkId: 19546,
|
|
24982
|
+
explorers: [
|
|
24983
|
+
{
|
|
24984
|
+
name: 'blockscout',
|
|
24985
|
+
url: 'https://linea-testnet-zytron-blockscout.zypher.game',
|
|
24986
|
+
standard: 'EIP3091'
|
|
24987
|
+
}
|
|
24988
|
+
]
|
|
24989
|
+
},
|
|
24890
24990
|
{
|
|
24891
24991
|
name: 'LBRY Mainnet',
|
|
24892
24992
|
chain: 'LBRY',
|
|
@@ -29004,21 +29104,22 @@ const chainArray = [
|
|
|
29004
29104
|
]
|
|
29005
29105
|
},
|
|
29006
29106
|
{
|
|
29007
|
-
name: '
|
|
29107
|
+
name: 'eSync Network Mainnet',
|
|
29108
|
+
title: 'eSync Network Mainnet',
|
|
29008
29109
|
chain: 'ECS',
|
|
29009
|
-
rpc: [ 'https://rpc.ecredits.com' ],
|
|
29110
|
+
rpc: [ 'https://rpc.esync.network', 'https://rpc.ecredits.com' ],
|
|
29010
29111
|
faucets: [],
|
|
29011
29112
|
nativeCurrency: { name: 'eCredits', symbol: 'ECS', decimals: 18 },
|
|
29012
|
-
infoURL: 'https://
|
|
29013
|
-
shortName: '
|
|
29113
|
+
infoURL: 'https://esync.network',
|
|
29114
|
+
shortName: 'esync-mainnet',
|
|
29014
29115
|
chainId: 63000,
|
|
29015
29116
|
networkId: 63000,
|
|
29016
|
-
icon: '
|
|
29117
|
+
icon: 'esync',
|
|
29017
29118
|
explorers: [
|
|
29018
29119
|
{
|
|
29019
|
-
name: '
|
|
29020
|
-
url: 'https://explorer.
|
|
29021
|
-
icon: '
|
|
29120
|
+
name: 'eSync Network Mainnet Explorer',
|
|
29121
|
+
url: 'https://explorer.esync.network',
|
|
29122
|
+
icon: 'esync',
|
|
29022
29123
|
standard: 'EIP3091'
|
|
29023
29124
|
}
|
|
29024
29125
|
]
|
|
@@ -31048,6 +31149,25 @@ const chainArray = [
|
|
|
31048
31149
|
networkId: 98881,
|
|
31049
31150
|
status: 'incubating'
|
|
31050
31151
|
},
|
|
31152
|
+
{
|
|
31153
|
+
name: 'Superposition Testnet',
|
|
31154
|
+
title: 'Sperposition Testnet',
|
|
31155
|
+
chain: 'SPN',
|
|
31156
|
+
rpc: [ 'https://testnet-rpc.superposition.so' ],
|
|
31157
|
+
faucets: [ 'https://faucet.superposition.so' ],
|
|
31158
|
+
nativeCurrency: { name: 'SPN', symbol: 'SPN', decimals: 18 },
|
|
31159
|
+
infoURL: 'https://superposition.so',
|
|
31160
|
+
shortName: 'superposition-testnet',
|
|
31161
|
+
chainId: 98985,
|
|
31162
|
+
networkId: 98985,
|
|
31163
|
+
explorers: [
|
|
31164
|
+
{
|
|
31165
|
+
name: 'Superposition Explorer',
|
|
31166
|
+
url: 'https://testnet-explorer.superposition.so',
|
|
31167
|
+
standard: 'EIP3091'
|
|
31168
|
+
}
|
|
31169
|
+
]
|
|
31170
|
+
},
|
|
31051
31171
|
{
|
|
31052
31172
|
name: 'eLiberty Testnet',
|
|
31053
31173
|
chain: '$EL',
|
|
@@ -33287,6 +33407,48 @@ const chainArray = [
|
|
|
33287
33407
|
}
|
|
33288
33408
|
]
|
|
33289
33409
|
},
|
|
33410
|
+
{
|
|
33411
|
+
name: 'Nxy Area 51',
|
|
33412
|
+
chain: 'NXY',
|
|
33413
|
+
rpc: [ 'https://nxy.social/testnet' ],
|
|
33414
|
+
faucets: [],
|
|
33415
|
+
nativeCurrency: { name: 'Nxy', symbol: 'NXY', decimals: 18 },
|
|
33416
|
+
infoURL: 'https://nxy.social/l1',
|
|
33417
|
+
shortName: 'nxytest',
|
|
33418
|
+
chainId: 272247,
|
|
33419
|
+
networkId: 272247,
|
|
33420
|
+
slip44: 272247,
|
|
33421
|
+
icon: 'nxy',
|
|
33422
|
+
explorers: [
|
|
33423
|
+
{
|
|
33424
|
+
name: 'Nxy Explorer',
|
|
33425
|
+
url: 'https://explorer.nxy.social',
|
|
33426
|
+
standard: 'none',
|
|
33427
|
+
icon: 'nxy'
|
|
33428
|
+
}
|
|
33429
|
+
]
|
|
33430
|
+
},
|
|
33431
|
+
{
|
|
33432
|
+
name: 'Nxy Oasis',
|
|
33433
|
+
chain: 'NXY',
|
|
33434
|
+
rpc: [ 'https://nxy.social/mainnet' ],
|
|
33435
|
+
faucets: [],
|
|
33436
|
+
nativeCurrency: { name: 'Nxy', symbol: 'NXY', decimals: 18 },
|
|
33437
|
+
infoURL: 'https://nxy.social/l1',
|
|
33438
|
+
shortName: 'nxy',
|
|
33439
|
+
chainId: 272520,
|
|
33440
|
+
networkId: 272520,
|
|
33441
|
+
slip44: 272520,
|
|
33442
|
+
icon: 'nxy',
|
|
33443
|
+
explorers: [
|
|
33444
|
+
{
|
|
33445
|
+
name: 'Nxy Explorer',
|
|
33446
|
+
url: 'https://explorer.nxy.social',
|
|
33447
|
+
standard: 'none',
|
|
33448
|
+
icon: 'nxy'
|
|
33449
|
+
}
|
|
33450
|
+
]
|
|
33451
|
+
},
|
|
33290
33452
|
{
|
|
33291
33453
|
name: 'Social Smart Chain Mainnet',
|
|
33292
33454
|
chain: 'SoChain',
|
|
@@ -35075,6 +35237,28 @@ const chainArray = [
|
|
|
35075
35237
|
}
|
|
35076
35238
|
]
|
|
35077
35239
|
},
|
|
35240
|
+
{
|
|
35241
|
+
name: 'Ink Sepolia',
|
|
35242
|
+
chain: 'ETH',
|
|
35243
|
+
rpc: [
|
|
35244
|
+
'https://rpc-gel-sepolia.inkonchain.com',
|
|
35245
|
+
'wss://ws-gel-sepolia.inkonchain.com'
|
|
35246
|
+
],
|
|
35247
|
+
faucets: [],
|
|
35248
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
35249
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
35250
|
+
infoURL: 'https://inkonchain.com/',
|
|
35251
|
+
shortName: 'inksepolia',
|
|
35252
|
+
chainId: 763373,
|
|
35253
|
+
networkId: 763373,
|
|
35254
|
+
explorers: [
|
|
35255
|
+
{
|
|
35256
|
+
name: 'Ink Sepolia Explorer',
|
|
35257
|
+
url: 'https://explorer-sepolia.inkonchain.com',
|
|
35258
|
+
standard: 'EIP3091'
|
|
35259
|
+
}
|
|
35260
|
+
]
|
|
35261
|
+
},
|
|
35078
35262
|
{
|
|
35079
35263
|
name: 'Lamina1 Testnet',
|
|
35080
35264
|
chain: 'Lamina1 Testnet',
|
|
@@ -36156,6 +36340,20 @@ const chainArray = [
|
|
|
36156
36340
|
chainId: 1731313,
|
|
36157
36341
|
networkId: 1731313
|
|
36158
36342
|
},
|
|
36343
|
+
{
|
|
36344
|
+
name: 'Xphere Testnet',
|
|
36345
|
+
chain: 'Xphere Testnet',
|
|
36346
|
+
icon: 'xphere',
|
|
36347
|
+
rpc: [ 'http://testnet.x-phere.com' ],
|
|
36348
|
+
features: [ { name: 'EIP1559' } ],
|
|
36349
|
+
faucets: [],
|
|
36350
|
+
nativeCurrency: { name: 'Xphere Testnet', symbol: 'XPT', decimals: 18 },
|
|
36351
|
+
infoURL: 'https://x-phere.com/',
|
|
36352
|
+
shortName: 'xp-test',
|
|
36353
|
+
chainId: 1998991,
|
|
36354
|
+
networkId: 1998991,
|
|
36355
|
+
explorers: []
|
|
36356
|
+
},
|
|
36159
36357
|
{
|
|
36160
36358
|
name: 'DeBank Testnet',
|
|
36161
36359
|
chain: 'DeBank',
|
|
@@ -39802,6 +40000,27 @@ const chainArray = [
|
|
|
39802
40000
|
}
|
|
39803
40001
|
]
|
|
39804
40002
|
},
|
|
40003
|
+
{
|
|
40004
|
+
name: 'Mekong',
|
|
40005
|
+
chain: 'ETH',
|
|
40006
|
+
rpc: [ 'https://rpc.mekong.ethpandaops.io' ],
|
|
40007
|
+
faucets: [ 'https://faucet.mekong.ethpandaops.io' ],
|
|
40008
|
+
nativeCurrency: { name: 'Testnet ETH', symbol: 'ETH', decimals: 18 },
|
|
40009
|
+
infoURL: 'https://mekong.ethpandaops.io',
|
|
40010
|
+
shortName: 'mekong',
|
|
40011
|
+
chainId: 7078815900,
|
|
40012
|
+
networkId: 7078815900,
|
|
40013
|
+
icon: 'ethereum',
|
|
40014
|
+
status: 'incubating',
|
|
40015
|
+
explorers: [
|
|
40016
|
+
{
|
|
40017
|
+
name: 'Holesky Dora Explorer',
|
|
40018
|
+
url: 'https://explorer.mekong.ethpandaops.io',
|
|
40019
|
+
icon: 'ethereum',
|
|
40020
|
+
standard: 'EIP3091'
|
|
40021
|
+
}
|
|
40022
|
+
]
|
|
40023
|
+
},
|
|
39805
40024
|
{
|
|
39806
40025
|
name: 'Palm Testnet',
|
|
39807
40026
|
chain: 'Palm',
|