eth-chainlist 0.0.352 → 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 +8 -0
- package/data/chain.js +61 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
3
11
|
### 0.0.352 (2024-03-01)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -22328,6 +22328,48 @@ const chainArray = [
|
|
22328
22328
|
}
|
22329
22329
|
]
|
22330
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
|
+
},
|
22331
22373
|
{
|
22332
22374
|
name: 'Taf ECO Chain Mainnet',
|
22333
22375
|
chain: 'Taf ECO Chain',
|
@@ -23467,6 +23509,25 @@ const chainArray = [
|
|
23467
23509
|
}
|
23468
23510
|
]
|
23469
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
|
+
},
|
23470
23531
|
{
|
23471
23532
|
name: 'Sei Devnet',
|
23472
23533
|
chain: 'Sei',
|