eth-chainlist 0.0.351 → 0.0.353
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 +186 -22
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.353 (2024-03-02)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.352 ([47d9eac](https://github.com/poowf/eth-chainlist/commit/47d9eac4d921bfb737aa057fe414672c20e4aa11))
|
9
|
+
* update chain data ([d9f7d24](https://github.com/poowf/eth-chainlist/commit/d9f7d24b3e7e600883a0d99bd388c532c7f152d0))
|
10
|
+
|
11
|
+
### 0.0.352 (2024-03-01)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.351 ([2afbc79](https://github.com/poowf/eth-chainlist/commit/2afbc796c5c20f9844413a9a908f354c88a48bca))
|
17
|
+
* update chain data ([700df5b](https://github.com/poowf/eth-chainlist/commit/700df5b2a493eca7edf1dc9ebce31c4b4ff0e763))
|
18
|
+
|
3
19
|
### 0.0.351 (2024-02-29)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -3867,17 +3867,23 @@ const chainArray = [
|
|
3867
3867
|
]
|
3868
3868
|
},
|
3869
3869
|
{
|
3870
|
-
name: 'Fraxtal
|
3870
|
+
name: 'Fraxtal',
|
3871
3871
|
chain: 'FRAX',
|
3872
|
-
rpc: [],
|
3872
|
+
rpc: [ 'https://rpc.frax.com' ],
|
3873
3873
|
faucets: [],
|
3874
3874
|
nativeCurrency: { name: 'Frax Ether', symbol: 'frxETH', decimals: 18 },
|
3875
3875
|
infoURL: 'https://mainnet.frax.com',
|
3876
3876
|
shortName: 'fraxtal',
|
3877
3877
|
chainId: 252,
|
3878
3878
|
networkId: 252,
|
3879
|
-
explorers: [
|
3880
|
-
|
3879
|
+
explorers: [
|
3880
|
+
{
|
3881
|
+
name: 'fraxscan',
|
3882
|
+
url: 'https://fraxscan.com',
|
3883
|
+
standard: 'EIP3091'
|
3884
|
+
}
|
3885
|
+
],
|
3886
|
+
status: 'active'
|
3881
3887
|
},
|
3882
3888
|
{
|
3883
3889
|
name: 'Kroma',
|
@@ -8997,6 +9003,25 @@ const chainArray = [
|
|
8997
9003
|
}
|
8998
9004
|
]
|
8999
9005
|
},
|
9006
|
+
{
|
9007
|
+
name: 'Ethereum Inscription Mainnet',
|
9008
|
+
chain: 'ETINS',
|
9009
|
+
rpc: [ 'https://rpc.etins.org' ],
|
9010
|
+
faucets: [],
|
9011
|
+
nativeCurrency: { name: 'Ethereum Inscription', symbol: 'ETINS', decimals: 18 },
|
9012
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
9013
|
+
infoURL: 'https://www.etins.org',
|
9014
|
+
shortName: 'etins',
|
9015
|
+
chainId: 1617,
|
9016
|
+
networkId: 1617,
|
9017
|
+
explorers: [
|
9018
|
+
{
|
9019
|
+
name: 'Ethereum Inscription Explorer',
|
9020
|
+
url: 'https://explorer.etins.org',
|
9021
|
+
standard: 'none'
|
9022
|
+
}
|
9023
|
+
]
|
9024
|
+
},
|
9000
9025
|
{
|
9001
9026
|
name: 'Catecoin Chain Mainnet',
|
9002
9027
|
chain: 'Catechain',
|
@@ -10228,7 +10253,7 @@ const chainArray = [
|
|
10228
10253
|
chain: 'SWAN',
|
10229
10254
|
rpc: [ 'https://saturn-rpc.swanchain.io' ],
|
10230
10255
|
faucets: [],
|
10231
|
-
nativeCurrency: { name: 'SWANETH', symbol: '
|
10256
|
+
nativeCurrency: { name: 'SWANETH', symbol: 'sETH', decimals: 18 },
|
10232
10257
|
infoURL: 'https://swanchain.io/',
|
10233
10258
|
shortName: 'swan',
|
10234
10259
|
chainId: 2024,
|
@@ -11258,7 +11283,13 @@ const chainArray = [
|
|
11258
11283
|
chainId: 2522,
|
11259
11284
|
networkId: 2522,
|
11260
11285
|
slip44: 1,
|
11261
|
-
explorers: [
|
11286
|
+
explorers: [
|
11287
|
+
{
|
11288
|
+
name: 'fraxscan',
|
11289
|
+
url: 'https://holesky.fraxscan.com',
|
11290
|
+
standard: 'EIP3091'
|
11291
|
+
}
|
11292
|
+
],
|
11262
11293
|
status: 'active'
|
11263
11294
|
},
|
11264
11295
|
{
|
@@ -11394,6 +11425,21 @@ const chainArray = [
|
|
11394
11425
|
}
|
11395
11426
|
]
|
11396
11427
|
},
|
11428
|
+
{
|
11429
|
+
name: 'APEX',
|
11430
|
+
status: 'incubating',
|
11431
|
+
chain: 'ETH',
|
11432
|
+
rpc: [],
|
11433
|
+
faucets: [],
|
11434
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
11435
|
+
infoURL: 'https://apexlayer.xyz/',
|
11436
|
+
shortName: 'apexmainnet',
|
11437
|
+
chainId: 2662,
|
11438
|
+
networkId: 2662,
|
11439
|
+
icon: 'apexmainnet',
|
11440
|
+
explorers: [],
|
11441
|
+
parent: { type: 'L2', chain: 'eip155-1' }
|
11442
|
+
},
|
11397
11443
|
{
|
11398
11444
|
name: 'Morph Testnet',
|
11399
11445
|
chain: 'ETH',
|
@@ -11916,6 +11962,11 @@ const chainArray = [
|
|
11916
11962
|
name: '3xpl',
|
11917
11963
|
url: 'https://3xpl.com/botanix',
|
11918
11964
|
standard: 'EIP3091'
|
11965
|
+
},
|
11966
|
+
{
|
11967
|
+
name: 'Blockscout',
|
11968
|
+
url: 'https://blockscout.botanixlabs.dev',
|
11969
|
+
standard: 'EIP3091'
|
11919
11970
|
}
|
11920
11971
|
]
|
11921
11972
|
},
|
@@ -12089,6 +12140,22 @@ const chainArray = [
|
|
12089
12140
|
}
|
12090
12141
|
]
|
12091
12142
|
},
|
12143
|
+
{
|
12144
|
+
name: 'Astar zkEVM',
|
12145
|
+
shortName: 'astrzk',
|
12146
|
+
title: 'Astar zkEVM Mainnet',
|
12147
|
+
chain: 'ETH',
|
12148
|
+
icon: 'astarzk',
|
12149
|
+
rpc: [],
|
12150
|
+
faucets: [],
|
12151
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
12152
|
+
infoURL: 'https://astar.network',
|
12153
|
+
chainId: 3776,
|
12154
|
+
networkId: 3776,
|
12155
|
+
explorers: [],
|
12156
|
+
parent: { type: 'L2', chain: 'eip155-1', bridges: [] },
|
12157
|
+
status: 'incubating'
|
12158
|
+
},
|
12092
12159
|
{
|
12093
12160
|
name: 'AlveyChain Mainnet',
|
12094
12161
|
chain: 'ALV',
|
@@ -16726,22 +16793,6 @@ const chainArray = [
|
|
16726
16793
|
],
|
16727
16794
|
parent: { type: 'L2', chain: 'eip155-43113' }
|
16728
16795
|
},
|
16729
|
-
{
|
16730
|
-
name: 'Astar zkEVM',
|
16731
|
-
shortName: 'astrzk',
|
16732
|
-
title: 'Astar zkEVM Mainnet',
|
16733
|
-
chain: 'ETH',
|
16734
|
-
icon: 'astarzk',
|
16735
|
-
rpc: [],
|
16736
|
-
faucets: [],
|
16737
|
-
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
16738
|
-
infoURL: 'https://astar.network',
|
16739
|
-
chainId: 12611,
|
16740
|
-
networkId: 12611,
|
16741
|
-
explorers: [],
|
16742
|
-
parent: { type: 'L2', chain: 'eip155-1', bridges: [] },
|
16743
|
-
status: 'incubating'
|
16744
|
-
},
|
16745
16796
|
{
|
16746
16797
|
name: 'Rikeza Network Testnet',
|
16747
16798
|
title: 'Rikeza Network Testnet',
|
@@ -22172,6 +22223,26 @@ const chainArray = [
|
|
22172
22223
|
}
|
22173
22224
|
]
|
22174
22225
|
},
|
22226
|
+
{
|
22227
|
+
name: 'Auroria Testnet',
|
22228
|
+
title: 'Stratis Testnet Auroria',
|
22229
|
+
chain: 'Auroria',
|
22230
|
+
rpc: [ 'https://auroria.rpc.stratisevm.com' ],
|
22231
|
+
faucets: [ 'https://auroria.faucet.stratisevm.com' ],
|
22232
|
+
nativeCurrency: { name: 'Auroria Stratis', symbol: 'tSTRAX', decimals: 18 },
|
22233
|
+
infoURL: 'https://www.stratisplatform.com',
|
22234
|
+
shortName: 'auroria',
|
22235
|
+
chainId: 205205,
|
22236
|
+
networkId: 205205,
|
22237
|
+
icon: 'auroria',
|
22238
|
+
explorers: [
|
22239
|
+
{
|
22240
|
+
name: 'Auroria Testnet Explorer',
|
22241
|
+
url: 'https://auroria.explorer.stratisevm.com',
|
22242
|
+
standard: 'EIP3091'
|
22243
|
+
}
|
22244
|
+
]
|
22245
|
+
},
|
22175
22246
|
{
|
22176
22247
|
name: 'PlatON Mainnet',
|
22177
22248
|
chain: 'PlatON',
|
@@ -22257,6 +22328,48 @@ const chainArray = [
|
|
22257
22328
|
}
|
22258
22329
|
]
|
22259
22330
|
},
|
22331
|
+
{
|
22332
|
+
name: 'DeepL Mainnet',
|
22333
|
+
chain: 'DEEPL',
|
22334
|
+
rpc: [ 'https://rpc.deeplnetwork.org' ],
|
22335
|
+
faucets: [],
|
22336
|
+
nativeCurrency: { name: 'DeepL', symbol: 'DEEPL', decimals: 18 },
|
22337
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
22338
|
+
infoURL: 'https://deeplnetwork.org',
|
22339
|
+
shortName: 'deepl',
|
22340
|
+
chainId: 222555,
|
22341
|
+
networkId: 222555,
|
22342
|
+
icon: 'deepl',
|
22343
|
+
explorers: [
|
22344
|
+
{
|
22345
|
+
name: 'DeepL Mainnet Explorer',
|
22346
|
+
url: 'https://scan.deeplnetwork.org',
|
22347
|
+
icon: 'deepl',
|
22348
|
+
standard: 'EIP3091'
|
22349
|
+
}
|
22350
|
+
]
|
22351
|
+
},
|
22352
|
+
{
|
22353
|
+
name: 'DeepL Testnet',
|
22354
|
+
chain: 'DEEPL',
|
22355
|
+
rpc: [ 'https://testnet.deeplnetwork.org' ],
|
22356
|
+
faucets: [ 'https://faucet.deeplnetwork.org' ],
|
22357
|
+
nativeCurrency: { name: 'DeepL', symbol: 'DEEPL', decimals: 18 },
|
22358
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
22359
|
+
infoURL: 'https://deeplnetwork.org',
|
22360
|
+
shortName: 'tdeepl',
|
22361
|
+
chainId: 222666,
|
22362
|
+
networkId: 222666,
|
22363
|
+
icon: 'deepl',
|
22364
|
+
explorers: [
|
22365
|
+
{
|
22366
|
+
name: 'DeepL Testnet Explorer',
|
22367
|
+
url: 'https://testnet-scan.deeplnetwork.org',
|
22368
|
+
icon: 'deepl',
|
22369
|
+
standard: 'EIP3091'
|
22370
|
+
}
|
22371
|
+
]
|
22372
|
+
},
|
22260
22373
|
{
|
22261
22374
|
name: 'Taf ECO Chain Mainnet',
|
22262
22375
|
chain: 'Taf ECO Chain',
|
@@ -23396,6 +23509,25 @@ const chainArray = [
|
|
23396
23509
|
}
|
23397
23510
|
]
|
23398
23511
|
},
|
23512
|
+
{
|
23513
|
+
name: 'Tiltyard Mainnet Subnet',
|
23514
|
+
chain: 'TILTYARD',
|
23515
|
+
rpc: [ 'https://subnets.avax.network/tiltyard/mainnet/rpc' ],
|
23516
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
23517
|
+
faucets: [],
|
23518
|
+
nativeCurrency: { name: 'TILT', symbol: 'TILT', decimals: 18 },
|
23519
|
+
infoURL: 'https://play.tiltyard.gg/',
|
23520
|
+
shortName: 'tiltyardmainnet',
|
23521
|
+
chainId: 710420,
|
23522
|
+
networkId: 710420,
|
23523
|
+
explorers: [
|
23524
|
+
{
|
23525
|
+
name: 'TILTYARD Explorer',
|
23526
|
+
url: 'https://subnets.avax.network/tiltyard',
|
23527
|
+
standard: 'EIP3091'
|
23528
|
+
}
|
23529
|
+
]
|
23530
|
+
},
|
23399
23531
|
{
|
23400
23532
|
name: 'Sei Devnet',
|
23401
23533
|
chain: 'Sei',
|
@@ -24214,6 +24346,38 @@ const chainArray = [
|
|
24214
24346
|
}
|
24215
24347
|
]
|
24216
24348
|
},
|
24349
|
+
{
|
24350
|
+
name: 'Astar zKyoto',
|
24351
|
+
shortName: 'azkyt',
|
24352
|
+
title: 'Astar zkEVM Testnet zKyoto',
|
24353
|
+
chain: 'ETH',
|
24354
|
+
icon: 'astarzk',
|
24355
|
+
rpc: [
|
24356
|
+
'https://rpc.startale.com/zkyoto',
|
24357
|
+
'https://rpc.zkyoto.gelato.digital'
|
24358
|
+
],
|
24359
|
+
faucets: [],
|
24360
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
24361
|
+
infoURL: 'https://astar.network',
|
24362
|
+
chainId: 6038361,
|
24363
|
+
networkId: 6038361,
|
24364
|
+
explorers: [
|
24365
|
+
{
|
24366
|
+
name: 'Blockscout zKyoto chain explorer',
|
24367
|
+
url: 'https://astar-zkyoto.blockscout.com',
|
24368
|
+
standard: 'EIP3091'
|
24369
|
+
}
|
24370
|
+
],
|
24371
|
+
parent: {
|
24372
|
+
type: 'L2',
|
24373
|
+
chain: 'eip155-11155111',
|
24374
|
+
bridges: [
|
24375
|
+
{ url: 'https://portal.astar.network' },
|
24376
|
+
{ url: 'https://bridge.gelato.network/bridge/astar-zkyoto' }
|
24377
|
+
]
|
24378
|
+
},
|
24379
|
+
status: 'incubating'
|
24380
|
+
},
|
24217
24381
|
{
|
24218
24382
|
name: 'Saakuru Mainnet',
|
24219
24383
|
chain: 'Saakuru',
|