eth-chainlist 0.0.479 → 0.0.481
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 +88 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.481 (2024-09-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.480 ([376fabd](https://github.com/poowf/eth-chainlist/commit/376fabdeb3f51d29873968fc9db03fdf5f6e5a57))
|
|
9
|
+
* update chain data ([34f76c1](https://github.com/poowf/eth-chainlist/commit/34f76c15c31f33eafc58cbf71704b5737b27a557))
|
|
10
|
+
|
|
11
|
+
### 0.0.480 (2024-08-31)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.479 ([707aee3](https://github.com/poowf/eth-chainlist/commit/707aee343223d29761283063c0acb5aa233b2f26))
|
|
17
|
+
* update chain data ([acf3aef](https://github.com/poowf/eth-chainlist/commit/acf3aef4e6433e36cff3e709e74aaf4667d7d3f5))
|
|
18
|
+
|
|
3
19
|
### 0.0.479 (2024-08-30)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -4447,7 +4447,11 @@ const chainArray = [
|
|
|
4447
4447
|
{
|
|
4448
4448
|
name: 'Swan Chain Mainnet',
|
|
4449
4449
|
chain: 'SWAN',
|
|
4450
|
-
rpc: [
|
|
4450
|
+
rpc: [
|
|
4451
|
+
'https://mainnet-rpc.swanchain.org',
|
|
4452
|
+
'https://mainnet-rpc-01.swanchain.org',
|
|
4453
|
+
'https://mainnet-rpc-02.swanchain.org'
|
|
4454
|
+
],
|
|
4451
4455
|
faucets: [],
|
|
4452
4456
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
4453
4457
|
infoURL: 'https://swanchain.io/',
|
|
@@ -8342,6 +8346,25 @@ const chainArray = [
|
|
|
8342
8346
|
}
|
|
8343
8347
|
]
|
|
8344
8348
|
},
|
|
8349
|
+
{
|
|
8350
|
+
name: 'Palm Smart Chain',
|
|
8351
|
+
title: 'Palm Smart Chain',
|
|
8352
|
+
chain: 'Palm',
|
|
8353
|
+
rpc: [ 'https://rpc.palmsmartchain.io' ],
|
|
8354
|
+
faucets: [],
|
|
8355
|
+
nativeCurrency: { name: 'PALM', symbol: 'PALM', decimals: 18 },
|
|
8356
|
+
infoURL: 'https://palmsmartchain.io',
|
|
8357
|
+
shortName: 'PalmChain',
|
|
8358
|
+
chainId: 973,
|
|
8359
|
+
networkId: 973,
|
|
8360
|
+
explorers: [
|
|
8361
|
+
{
|
|
8362
|
+
name: 'Palm Smart Chain Explorer',
|
|
8363
|
+
url: 'https://explorer.palmsmartchain.io',
|
|
8364
|
+
standard: 'EIP3091'
|
|
8365
|
+
}
|
|
8366
|
+
]
|
|
8367
|
+
},
|
|
8345
8368
|
{
|
|
8346
8369
|
name: 'Nepal Blockchain Network',
|
|
8347
8370
|
chain: 'YETI',
|
|
@@ -11591,6 +11614,30 @@ const chainArray = [
|
|
|
11591
11614
|
}
|
|
11592
11615
|
]
|
|
11593
11616
|
},
|
|
11617
|
+
{
|
|
11618
|
+
name: 'HighOctane Subnet',
|
|
11619
|
+
chain: 'HighOctane Subnet',
|
|
11620
|
+
rpc: [
|
|
11621
|
+
'https://subnets.avax.network/highoctane/mainnet/rpc',
|
|
11622
|
+
'wss://subnets.avax.network/highoctane/mainnet/ws'
|
|
11623
|
+
],
|
|
11624
|
+
faucets: [],
|
|
11625
|
+
nativeCurrency: { name: 'HighOctane', symbol: 'HO', decimals: 18 },
|
|
11626
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
11627
|
+
infoURL: 'https://subnets.avax.network/highoctane/details',
|
|
11628
|
+
shortName: 'HighOctane',
|
|
11629
|
+
chainId: 1853,
|
|
11630
|
+
networkId: 1853,
|
|
11631
|
+
icon: 'highOctane',
|
|
11632
|
+
explorers: [
|
|
11633
|
+
{
|
|
11634
|
+
name: 'HighOctane Subnet Explorer',
|
|
11635
|
+
url: 'https://subnets.avax.network/highoctane',
|
|
11636
|
+
icon: 'highOctane',
|
|
11637
|
+
standard: 'EIP3091'
|
|
11638
|
+
}
|
|
11639
|
+
]
|
|
11640
|
+
},
|
|
11594
11641
|
{
|
|
11595
11642
|
name: 'Teslafunds',
|
|
11596
11643
|
chain: 'TSF',
|
|
@@ -25063,7 +25110,7 @@ const chainArray = [
|
|
|
25063
25110
|
]
|
|
25064
25111
|
},
|
|
25065
25112
|
{
|
|
25066
|
-
name: 'Zilliqa
|
|
25113
|
+
name: 'Zilliqa 2 EVM devnet',
|
|
25067
25114
|
chain: 'ZIL',
|
|
25068
25115
|
rpc: [ 'https://api.zq2-devnet.zilliqa.com' ],
|
|
25069
25116
|
faucets: [ 'https://faucet.zq2-devnet.zilliqa.com' ],
|
|
@@ -25301,6 +25348,26 @@ const chainArray = [
|
|
|
25301
25348
|
}
|
|
25302
25349
|
]
|
|
25303
25350
|
},
|
|
25351
|
+
{
|
|
25352
|
+
name: 'DIV Chain',
|
|
25353
|
+
chain: 'DIVC',
|
|
25354
|
+
rpc: [ 'https://rpc.divchain.org' ],
|
|
25355
|
+
faucets: [],
|
|
25356
|
+
features: [ { name: 'EIP155' } ],
|
|
25357
|
+
nativeCurrency: { name: 'DIVC', symbol: 'DIVC', decimals: 18 },
|
|
25358
|
+
infoURL: 'https://www.divchain.org',
|
|
25359
|
+
shortName: 'divc',
|
|
25360
|
+
chainId: 40000,
|
|
25361
|
+
networkId: 40000,
|
|
25362
|
+
icon: 'divc',
|
|
25363
|
+
explorers: [
|
|
25364
|
+
{
|
|
25365
|
+
name: 'DIV Chain explorer',
|
|
25366
|
+
url: 'https://scan.divchain.org',
|
|
25367
|
+
standard: 'EIP3091'
|
|
25368
|
+
}
|
|
25369
|
+
]
|
|
25370
|
+
},
|
|
25304
25371
|
{
|
|
25305
25372
|
name: 'Aleph Zero EVM',
|
|
25306
25373
|
chain: 'Aleph Zero EVM',
|
|
@@ -30216,6 +30283,25 @@ const chainArray = [
|
|
|
30216
30283
|
}
|
|
30217
30284
|
]
|
|
30218
30285
|
},
|
|
30286
|
+
{
|
|
30287
|
+
name: 'Zchains',
|
|
30288
|
+
chain: 'Zchains',
|
|
30289
|
+
rpc: [ 'https://rpc.zchains.com' ],
|
|
30290
|
+
faucets: [],
|
|
30291
|
+
nativeCurrency: { name: 'ZCD', symbol: 'ZCD', decimals: 18 },
|
|
30292
|
+
infoURL: 'https://www.zchains.com/',
|
|
30293
|
+
shortName: 'zchains',
|
|
30294
|
+
chainId: 168168,
|
|
30295
|
+
networkId: 168168,
|
|
30296
|
+
icon: 'zchain',
|
|
30297
|
+
explorers: [
|
|
30298
|
+
{
|
|
30299
|
+
name: 'zchains',
|
|
30300
|
+
url: 'https://scan.zchains.com',
|
|
30301
|
+
standard: 'EIP3091'
|
|
30302
|
+
}
|
|
30303
|
+
]
|
|
30304
|
+
},
|
|
30219
30305
|
{
|
|
30220
30306
|
name: 'Fair Testnet',
|
|
30221
30307
|
chain: 'FAIR',
|