eth-chainlist 0.0.527 → 0.0.529
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 +261 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.529 (2024-11-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.528 ([af1757b](https://github.com/poowf/eth-chainlist/commit/af1757b9d8e6bf884fda15fbed91ecba5fc73b45))
|
|
9
|
+
* update chain data ([9a13847](https://github.com/poowf/eth-chainlist/commit/9a13847b3ec5a65cf74fc43cdeeac7a2589772ea))
|
|
10
|
+
|
|
11
|
+
### 0.0.528 (2024-11-01)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.527 ([e3c6cb1](https://github.com/poowf/eth-chainlist/commit/e3c6cb1126df8e849ad3e87e20974f90203823cc))
|
|
17
|
+
* update chain data ([9266c12](https://github.com/poowf/eth-chainlist/commit/9266c128c865269183f5a3c8283266d6b3a96b2d))
|
|
18
|
+
|
|
3
19
|
### 0.0.527 (2024-10-31)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -3457,6 +3457,19 @@ const chainArray = [
|
|
|
3457
3457
|
networkId: 172,
|
|
3458
3458
|
slip44: 1
|
|
3459
3459
|
},
|
|
3460
|
+
{
|
|
3461
|
+
name: 'OTC',
|
|
3462
|
+
chain: 'OTC',
|
|
3463
|
+
faucets: [],
|
|
3464
|
+
icon: 'otc',
|
|
3465
|
+
rpc: [ 'https://rpc.otc.run', 'wss://rpc.otc.run' ],
|
|
3466
|
+
nativeCurrency: { name: 'OTC', symbol: 'OTC', decimals: 18 },
|
|
3467
|
+
infoURL: 'https://otc.network',
|
|
3468
|
+
shortName: 'OTC',
|
|
3469
|
+
chainId: 175,
|
|
3470
|
+
networkId: 175,
|
|
3471
|
+
slip44: 511
|
|
3472
|
+
},
|
|
3460
3473
|
{
|
|
3461
3474
|
name: 'DC Mainnet',
|
|
3462
3475
|
chain: 'dcchain',
|
|
@@ -10742,6 +10755,28 @@ const chainArray = [
|
|
|
10742
10755
|
}
|
|
10743
10756
|
]
|
|
10744
10757
|
},
|
|
10758
|
+
{
|
|
10759
|
+
name: 'Argochain',
|
|
10760
|
+
chain: 'Argochain',
|
|
10761
|
+
icon: 'argochain',
|
|
10762
|
+
rpc: [
|
|
10763
|
+
'https://rpc.devolvedai.com',
|
|
10764
|
+
'https://rpc-mainnet.devolvedai.com'
|
|
10765
|
+
],
|
|
10766
|
+
faucets: [],
|
|
10767
|
+
nativeCurrency: { name: 'AGC', symbol: 'AGC', decimals: 18 },
|
|
10768
|
+
infoURL: 'https://devolvedai.com',
|
|
10769
|
+
shortName: 'AGC',
|
|
10770
|
+
chainId: 1299,
|
|
10771
|
+
networkId: 1299,
|
|
10772
|
+
explorers: [
|
|
10773
|
+
{
|
|
10774
|
+
name: 'Argochain Scanner',
|
|
10775
|
+
url: 'https://scanner.argoscan.net',
|
|
10776
|
+
standard: 'EIP3091'
|
|
10777
|
+
}
|
|
10778
|
+
]
|
|
10779
|
+
},
|
|
10745
10780
|
{
|
|
10746
10781
|
name: 'Unichain Sepolia Testnet',
|
|
10747
10782
|
chain: 'ETH',
|
|
@@ -11486,7 +11521,7 @@ const chainArray = [
|
|
|
11486
11521
|
icon: 'dscscan',
|
|
11487
11522
|
rpc: [ 'https://rpc01.dscscan.io' ],
|
|
11488
11523
|
faucets: [],
|
|
11489
|
-
nativeCurrency: { name: 'Digital Smart Chain', symbol: '
|
|
11524
|
+
nativeCurrency: { name: 'Digital Smart Chain', symbol: 'DSC', decimals: 18 },
|
|
11490
11525
|
infoURL: 'https://rpc01.dscscan.io',
|
|
11491
11526
|
shortName: 'DSCs',
|
|
11492
11527
|
chainId: 1555,
|
|
@@ -11494,7 +11529,7 @@ const chainArray = [
|
|
|
11494
11529
|
explorers: [
|
|
11495
11530
|
{
|
|
11496
11531
|
name: 'Digital Smart Chain',
|
|
11497
|
-
url: 'https://
|
|
11532
|
+
url: 'https://dscscan.io',
|
|
11498
11533
|
standard: 'EIP3091'
|
|
11499
11534
|
}
|
|
11500
11535
|
]
|
|
@@ -11718,6 +11753,7 @@ const chainArray = [
|
|
|
11718
11753
|
shortName: 'minttest',
|
|
11719
11754
|
chainId: 1686,
|
|
11720
11755
|
networkId: 1686,
|
|
11756
|
+
status: 'deprecated',
|
|
11721
11757
|
icon: 'mintTestnet',
|
|
11722
11758
|
explorers: [
|
|
11723
11759
|
{
|
|
@@ -12446,6 +12482,25 @@ const chainArray = [
|
|
|
12446
12482
|
networkId: 1918,
|
|
12447
12483
|
explorers: []
|
|
12448
12484
|
},
|
|
12485
|
+
{
|
|
12486
|
+
name: 'Swell Network',
|
|
12487
|
+
chain: 'Swell L2',
|
|
12488
|
+
rpc: [ 'https://swell-mainnet.alt.technology' ],
|
|
12489
|
+
faucets: [],
|
|
12490
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
12491
|
+
infoURL: 'https://app.swellnetwork.io/layer2/swell-l2',
|
|
12492
|
+
shortName: 'swell-l2',
|
|
12493
|
+
chainId: 1923,
|
|
12494
|
+
networkId: 1923,
|
|
12495
|
+
explorers: [
|
|
12496
|
+
{
|
|
12497
|
+
name: 'swell-l2',
|
|
12498
|
+
icon: 'swell',
|
|
12499
|
+
url: 'https://swell-mainnet-explorer.alt.technology',
|
|
12500
|
+
standard: 'none'
|
|
12501
|
+
}
|
|
12502
|
+
]
|
|
12503
|
+
},
|
|
12449
12504
|
{
|
|
12450
12505
|
name: 'Arvix Testnet',
|
|
12451
12506
|
chain: 'Arvix',
|
|
@@ -17088,6 +17143,20 @@ const chainArray = [
|
|
|
17088
17143
|
}
|
|
17089
17144
|
]
|
|
17090
17145
|
},
|
|
17146
|
+
{
|
|
17147
|
+
name: 'Testnet Pika',
|
|
17148
|
+
chain: 'tPKA',
|
|
17149
|
+
rpc: [ 'https://testnet-rpc1.pikascan.com' ],
|
|
17150
|
+
faucets: [],
|
|
17151
|
+
icon: 'testnetpsc',
|
|
17152
|
+
nativeCurrency: { name: 'Testnet Pika', symbol: 'tPKA', decimals: 18 },
|
|
17153
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
17154
|
+
infoURL: 'https://pikaminter.com',
|
|
17155
|
+
shortName: 'PikaMinter',
|
|
17156
|
+
chainId: 4422,
|
|
17157
|
+
networkId: 4422,
|
|
17158
|
+
explorers: []
|
|
17159
|
+
},
|
|
17091
17160
|
{
|
|
17092
17161
|
name: 'Htmlcoin Mainnet',
|
|
17093
17162
|
chain: 'mainnet',
|
|
@@ -19758,6 +19827,26 @@ const chainArray = [
|
|
|
19758
19827
|
}
|
|
19759
19828
|
]
|
|
19760
19829
|
},
|
|
19830
|
+
{
|
|
19831
|
+
name: 'Phron Testnet',
|
|
19832
|
+
chain: 'PHR',
|
|
19833
|
+
icon: 'phron',
|
|
19834
|
+
rpc: [ 'https://testnet.phron.ai', 'wss://testnet.phron.ai' ],
|
|
19835
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
19836
|
+
faucets: [ 'https://faucet.phron.ai' ],
|
|
19837
|
+
nativeCurrency: { name: 'Phron', symbol: 'TPHR', decimals: 18 },
|
|
19838
|
+
infoURL: 'https://phron.ai',
|
|
19839
|
+
shortName: 'phr',
|
|
19840
|
+
chainId: 7744,
|
|
19841
|
+
networkId: 7744,
|
|
19842
|
+
explorers: [
|
|
19843
|
+
{
|
|
19844
|
+
name: 'phronscan',
|
|
19845
|
+
url: 'https://testnet.phronscan.io',
|
|
19846
|
+
standard: 'EIP3091'
|
|
19847
|
+
}
|
|
19848
|
+
]
|
|
19849
|
+
},
|
|
19761
19850
|
{
|
|
19762
19851
|
name: 'Bitrock Testnet',
|
|
19763
19852
|
chain: 'Bitrock',
|
|
@@ -22103,6 +22192,25 @@ const chainArray = [
|
|
|
22103
22192
|
}
|
|
22104
22193
|
]
|
|
22105
22194
|
},
|
|
22195
|
+
{
|
|
22196
|
+
name: 'Zytron Linea Mainnet',
|
|
22197
|
+
chain: 'ETH',
|
|
22198
|
+
icon: 'zytron',
|
|
22199
|
+
rpc: [ 'https://rpc.zypher.network/' ],
|
|
22200
|
+
faucets: [],
|
|
22201
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
|
22202
|
+
infoURL: 'https://zytron.zypher.network/',
|
|
22203
|
+
shortName: 'zytron-linea',
|
|
22204
|
+
chainId: 9901,
|
|
22205
|
+
networkId: 9901,
|
|
22206
|
+
explorers: [
|
|
22207
|
+
{
|
|
22208
|
+
name: 'blockscout',
|
|
22209
|
+
url: 'https://explorer.zypher.network',
|
|
22210
|
+
standard: 'EIP3091'
|
|
22211
|
+
}
|
|
22212
|
+
]
|
|
22213
|
+
},
|
|
22106
22214
|
{
|
|
22107
22215
|
name: 'Espento Mainnet',
|
|
22108
22216
|
chain: 'SPENT',
|
|
@@ -23156,6 +23264,11 @@ const chainArray = [
|
|
|
23156
23264
|
name: 'ArtelaScan',
|
|
23157
23265
|
url: 'https://betanet-scan.artela.network',
|
|
23158
23266
|
standard: 'EIP3091'
|
|
23267
|
+
},
|
|
23268
|
+
{
|
|
23269
|
+
name: 'OKXExplorer',
|
|
23270
|
+
url: 'https://www.okx.com/web3/explorer/artela-testnet',
|
|
23271
|
+
standard: 'EIP3091'
|
|
23159
23272
|
}
|
|
23160
23273
|
]
|
|
23161
23274
|
},
|
|
@@ -24887,6 +25000,25 @@ const chainArray = [
|
|
|
24887
25000
|
networkId: 19527,
|
|
24888
25001
|
explorers: []
|
|
24889
25002
|
},
|
|
25003
|
+
{
|
|
25004
|
+
name: 'Zytron Linea Testnet',
|
|
25005
|
+
chain: 'ETH',
|
|
25006
|
+
icon: 'zytron',
|
|
25007
|
+
rpc: [ 'https://linea-testnet-zytron.zypher.game/' ],
|
|
25008
|
+
faucets: [],
|
|
25009
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
|
25010
|
+
infoURL: 'https://zytron.zypher.network/',
|
|
25011
|
+
shortName: 'zytron-linea-testnet',
|
|
25012
|
+
chainId: 19546,
|
|
25013
|
+
networkId: 19546,
|
|
25014
|
+
explorers: [
|
|
25015
|
+
{
|
|
25016
|
+
name: 'blockscout',
|
|
25017
|
+
url: 'https://linea-testnet-zytron-blockscout.zypher.game',
|
|
25018
|
+
standard: 'EIP3091'
|
|
25019
|
+
}
|
|
25020
|
+
]
|
|
25021
|
+
},
|
|
24890
25022
|
{
|
|
24891
25023
|
name: 'LBRY Mainnet',
|
|
24892
25024
|
chain: 'LBRY',
|
|
@@ -29004,21 +29136,22 @@ const chainArray = [
|
|
|
29004
29136
|
]
|
|
29005
29137
|
},
|
|
29006
29138
|
{
|
|
29007
|
-
name: '
|
|
29139
|
+
name: 'eSync Network Mainnet',
|
|
29140
|
+
title: 'eSync Network Mainnet',
|
|
29008
29141
|
chain: 'ECS',
|
|
29009
|
-
rpc: [ 'https://rpc.ecredits.com' ],
|
|
29142
|
+
rpc: [ 'https://rpc.esync.network', 'https://rpc.ecredits.com' ],
|
|
29010
29143
|
faucets: [],
|
|
29011
29144
|
nativeCurrency: { name: 'eCredits', symbol: 'ECS', decimals: 18 },
|
|
29012
|
-
infoURL: 'https://
|
|
29013
|
-
shortName: '
|
|
29145
|
+
infoURL: 'https://esync.network',
|
|
29146
|
+
shortName: 'esync-mainnet',
|
|
29014
29147
|
chainId: 63000,
|
|
29015
29148
|
networkId: 63000,
|
|
29016
|
-
icon: '
|
|
29149
|
+
icon: 'esync',
|
|
29017
29150
|
explorers: [
|
|
29018
29151
|
{
|
|
29019
|
-
name: '
|
|
29020
|
-
url: 'https://explorer.
|
|
29021
|
-
icon: '
|
|
29152
|
+
name: 'eSync Network Mainnet Explorer',
|
|
29153
|
+
url: 'https://explorer.esync.network',
|
|
29154
|
+
icon: 'esync',
|
|
29022
29155
|
standard: 'EIP3091'
|
|
29023
29156
|
}
|
|
29024
29157
|
]
|
|
@@ -31048,6 +31181,25 @@ const chainArray = [
|
|
|
31048
31181
|
networkId: 98881,
|
|
31049
31182
|
status: 'incubating'
|
|
31050
31183
|
},
|
|
31184
|
+
{
|
|
31185
|
+
name: 'Superposition Testnet',
|
|
31186
|
+
title: 'Sperposition Testnet',
|
|
31187
|
+
chain: 'SPN',
|
|
31188
|
+
rpc: [ 'https://testnet-rpc.superposition.so' ],
|
|
31189
|
+
faucets: [ 'https://faucet.superposition.so' ],
|
|
31190
|
+
nativeCurrency: { name: 'SPN', symbol: 'SPN', decimals: 18 },
|
|
31191
|
+
infoURL: 'https://superposition.so',
|
|
31192
|
+
shortName: 'superposition-testnet',
|
|
31193
|
+
chainId: 98985,
|
|
31194
|
+
networkId: 98985,
|
|
31195
|
+
explorers: [
|
|
31196
|
+
{
|
|
31197
|
+
name: 'Superposition Explorer',
|
|
31198
|
+
url: 'https://testnet-explorer.superposition.so',
|
|
31199
|
+
standard: 'EIP3091'
|
|
31200
|
+
}
|
|
31201
|
+
]
|
|
31202
|
+
},
|
|
31051
31203
|
{
|
|
31052
31204
|
name: 'eLiberty Testnet',
|
|
31053
31205
|
chain: '$EL',
|
|
@@ -33287,6 +33439,48 @@ const chainArray = [
|
|
|
33287
33439
|
}
|
|
33288
33440
|
]
|
|
33289
33441
|
},
|
|
33442
|
+
{
|
|
33443
|
+
name: 'Nxy Area 51',
|
|
33444
|
+
chain: 'NXY',
|
|
33445
|
+
rpc: [ 'https://nxy.social/testnet' ],
|
|
33446
|
+
faucets: [],
|
|
33447
|
+
nativeCurrency: { name: 'Nxy', symbol: 'NXY', decimals: 18 },
|
|
33448
|
+
infoURL: 'https://nxy.social/l1',
|
|
33449
|
+
shortName: 'nxytest',
|
|
33450
|
+
chainId: 272247,
|
|
33451
|
+
networkId: 272247,
|
|
33452
|
+
slip44: 272247,
|
|
33453
|
+
icon: 'nxy',
|
|
33454
|
+
explorers: [
|
|
33455
|
+
{
|
|
33456
|
+
name: 'Nxy Explorer',
|
|
33457
|
+
url: 'https://explorer.nxy.social',
|
|
33458
|
+
standard: 'none',
|
|
33459
|
+
icon: 'nxy'
|
|
33460
|
+
}
|
|
33461
|
+
]
|
|
33462
|
+
},
|
|
33463
|
+
{
|
|
33464
|
+
name: 'Nxy Oasis',
|
|
33465
|
+
chain: 'NXY',
|
|
33466
|
+
rpc: [ 'https://nxy.social/mainnet' ],
|
|
33467
|
+
faucets: [],
|
|
33468
|
+
nativeCurrency: { name: 'Nxy', symbol: 'NXY', decimals: 18 },
|
|
33469
|
+
infoURL: 'https://nxy.social/l1',
|
|
33470
|
+
shortName: 'nxy',
|
|
33471
|
+
chainId: 272520,
|
|
33472
|
+
networkId: 272520,
|
|
33473
|
+
slip44: 272520,
|
|
33474
|
+
icon: 'nxy',
|
|
33475
|
+
explorers: [
|
|
33476
|
+
{
|
|
33477
|
+
name: 'Nxy Explorer',
|
|
33478
|
+
url: 'https://explorer.nxy.social',
|
|
33479
|
+
standard: 'none',
|
|
33480
|
+
icon: 'nxy'
|
|
33481
|
+
}
|
|
33482
|
+
]
|
|
33483
|
+
},
|
|
33290
33484
|
{
|
|
33291
33485
|
name: 'Social Smart Chain Mainnet',
|
|
33292
33486
|
chain: 'SoChain',
|
|
@@ -35075,6 +35269,28 @@ const chainArray = [
|
|
|
35075
35269
|
}
|
|
35076
35270
|
]
|
|
35077
35271
|
},
|
|
35272
|
+
{
|
|
35273
|
+
name: 'Ink Sepolia',
|
|
35274
|
+
chain: 'ETH',
|
|
35275
|
+
rpc: [
|
|
35276
|
+
'https://rpc-gel-sepolia.inkonchain.com',
|
|
35277
|
+
'wss://ws-gel-sepolia.inkonchain.com'
|
|
35278
|
+
],
|
|
35279
|
+
faucets: [],
|
|
35280
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
35281
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
35282
|
+
infoURL: 'https://inkonchain.com/',
|
|
35283
|
+
shortName: 'inksepolia',
|
|
35284
|
+
chainId: 763373,
|
|
35285
|
+
networkId: 763373,
|
|
35286
|
+
explorers: [
|
|
35287
|
+
{
|
|
35288
|
+
name: 'Ink Sepolia Explorer',
|
|
35289
|
+
url: 'https://explorer-sepolia.inkonchain.com',
|
|
35290
|
+
standard: 'EIP3091'
|
|
35291
|
+
}
|
|
35292
|
+
]
|
|
35293
|
+
},
|
|
35078
35294
|
{
|
|
35079
35295
|
name: 'Lamina1 Testnet',
|
|
35080
35296
|
chain: 'Lamina1 Testnet',
|
|
@@ -36156,6 +36372,20 @@ const chainArray = [
|
|
|
36156
36372
|
chainId: 1731313,
|
|
36157
36373
|
networkId: 1731313
|
|
36158
36374
|
},
|
|
36375
|
+
{
|
|
36376
|
+
name: 'Xphere Testnet',
|
|
36377
|
+
chain: 'Xphere Testnet',
|
|
36378
|
+
icon: 'xphere',
|
|
36379
|
+
rpc: [ 'http://testnet.x-phere.com' ],
|
|
36380
|
+
features: [ { name: 'EIP1559' } ],
|
|
36381
|
+
faucets: [],
|
|
36382
|
+
nativeCurrency: { name: 'Xphere Testnet', symbol: 'XPT', decimals: 18 },
|
|
36383
|
+
infoURL: 'https://x-phere.com/',
|
|
36384
|
+
shortName: 'xp-test',
|
|
36385
|
+
chainId: 1998991,
|
|
36386
|
+
networkId: 1998991,
|
|
36387
|
+
explorers: []
|
|
36388
|
+
},
|
|
36159
36389
|
{
|
|
36160
36390
|
name: 'DeBank Testnet',
|
|
36161
36391
|
chain: 'DeBank',
|
|
@@ -39802,6 +40032,27 @@ const chainArray = [
|
|
|
39802
40032
|
}
|
|
39803
40033
|
]
|
|
39804
40034
|
},
|
|
40035
|
+
{
|
|
40036
|
+
name: 'Mekong',
|
|
40037
|
+
chain: 'ETH',
|
|
40038
|
+
rpc: [ 'https://rpc.mekong.ethpandaops.io' ],
|
|
40039
|
+
faucets: [ 'https://faucet.mekong.ethpandaops.io' ],
|
|
40040
|
+
nativeCurrency: { name: 'Testnet ETH', symbol: 'ETH', decimals: 18 },
|
|
40041
|
+
infoURL: 'https://mekong.ethpandaops.io',
|
|
40042
|
+
shortName: 'mekong',
|
|
40043
|
+
chainId: 7078815900,
|
|
40044
|
+
networkId: 7078815900,
|
|
40045
|
+
icon: 'ethereum',
|
|
40046
|
+
status: 'incubating',
|
|
40047
|
+
explorers: [
|
|
40048
|
+
{
|
|
40049
|
+
name: 'Holesky Dora Explorer',
|
|
40050
|
+
url: 'https://explorer.mekong.ethpandaops.io',
|
|
40051
|
+
icon: 'ethereum',
|
|
40052
|
+
standard: 'EIP3091'
|
|
40053
|
+
}
|
|
40054
|
+
]
|
|
40055
|
+
},
|
|
39805
40056
|
{
|
|
39806
40057
|
name: 'Palm Testnet',
|
|
39807
40058
|
chain: 'Palm',
|