eth-chainlist 0.0.339 → 0.0.341
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 +46 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.341 (2024-02-16)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.340 ([e063f16](https://github.com/poowf/eth-chainlist/commit/e063f1661632b7f40ef6df43176a346ee0a64137))
|
9
|
+
* update chain data ([78a847d](https://github.com/poowf/eth-chainlist/commit/78a847d8e7ac24a58ccbf728f3ef53e06edfd2d6))
|
10
|
+
|
11
|
+
### 0.0.340 (2024-02-15)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.339 ([0e9d391](https://github.com/poowf/eth-chainlist/commit/0e9d3915fbf696172e40d81feae712b0b2b034f3))
|
17
|
+
* update chain data ([faf27f4](https://github.com/poowf/eth-chainlist/commit/faf27f405b45291e3055d4e0405d56b0ffd75d7e))
|
18
|
+
|
3
19
|
### 0.0.339 (2024-02-14)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -10966,6 +10966,31 @@ const chainArray = [
|
|
10966
10966
|
}
|
10967
10967
|
]
|
10968
10968
|
},
|
10969
|
+
{
|
10970
|
+
name: 'Polygon zkEVM Cardona Testnet',
|
10971
|
+
title: 'Polygon zkEVM Cardona Testnet',
|
10972
|
+
chain: 'Polygon',
|
10973
|
+
rpc: [ 'https://rpc.cardona.zkevm-rpc.com' ],
|
10974
|
+
faucets: [],
|
10975
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
10976
|
+
infoURL: 'https://polygon.technology/polygon-zkevm',
|
10977
|
+
shortName: 'zkevm-testnet-cardona',
|
10978
|
+
chainId: 2442,
|
10979
|
+
networkId: 2442,
|
10980
|
+
icon: 'zkevm',
|
10981
|
+
explorers: [
|
10982
|
+
{
|
10983
|
+
name: 'polygonscan',
|
10984
|
+
url: 'https://cardona-zkevm.polygonscan.com',
|
10985
|
+
standard: 'EIP3091'
|
10986
|
+
}
|
10987
|
+
],
|
10988
|
+
parent: {
|
10989
|
+
type: 'L2',
|
10990
|
+
chain: 'eip155-1',
|
10991
|
+
bridges: [ { url: 'https://bridge-ui.cardona.zkevm-rpc.com' } ]
|
10992
|
+
}
|
10993
|
+
},
|
10969
10994
|
{
|
10970
10995
|
name: 'Hybrid Chain Network Testnet',
|
10971
10996
|
chain: 'HYBRID',
|
@@ -15346,6 +15371,27 @@ const chainArray = [
|
|
15346
15371
|
}
|
15347
15372
|
]
|
15348
15373
|
},
|
15374
|
+
{
|
15375
|
+
name: 'Dela Sepolia Testnet',
|
15376
|
+
chain: 'ETH',
|
15377
|
+
rpc: [ 'https://sepolia-dela.deperp.com' ],
|
15378
|
+
faucets: [],
|
15379
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
15380
|
+
infoURL: 'https://www.deperp.com/dela',
|
15381
|
+
shortName: 'delasep',
|
15382
|
+
chainId: 9393,
|
15383
|
+
networkId: 9393,
|
15384
|
+
slip44: 1,
|
15385
|
+
icon: 'delaTestnet',
|
15386
|
+
explorers: [
|
15387
|
+
{
|
15388
|
+
name: 'basescout',
|
15389
|
+
url: 'https://sepolia-delascan.deperp.com',
|
15390
|
+
icon: 'blockscout',
|
15391
|
+
standard: 'EIP3091'
|
15392
|
+
}
|
15393
|
+
]
|
15394
|
+
},
|
15349
15395
|
{
|
15350
15396
|
name: 'Evoke Mainnet',
|
15351
15397
|
chain: 'MTHN',
|