eth-chainlist 0.0.565 → 0.0.567
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 +162 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.567 (2024-12-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.566 ([327e3f9](https://github.com/poowf/eth-chainlist/commit/327e3f9a94fb0a4fa763cc3c5fd9d028510c833c))
|
|
9
|
+
* update chain data ([53e30cb](https://github.com/poowf/eth-chainlist/commit/53e30cb1626f533a10e39bff964bcc114b57a07b))
|
|
10
|
+
|
|
11
|
+
### 0.0.566 (2024-12-16)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.565 ([de6e59a](https://github.com/poowf/eth-chainlist/commit/de6e59a30ce520681327f704167a9596aeee99f6))
|
|
17
|
+
* update chain data ([bd5ed04](https://github.com/poowf/eth-chainlist/commit/bd5ed0470df7e33d51cbea9ce48511074e2ec620))
|
|
18
|
+
|
|
3
19
|
### 0.0.565 (2024-12-15)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -3568,14 +3568,21 @@ const chainArray = [
|
|
|
3568
3568
|
name: 'HashKey Chain',
|
|
3569
3569
|
title: 'HashKey Chain',
|
|
3570
3570
|
chain: 'HashKey Chain',
|
|
3571
|
-
rpc: [],
|
|
3571
|
+
rpc: [ 'https://mainnet.hsk.xyz' ],
|
|
3572
3572
|
faucets: [],
|
|
3573
3573
|
nativeCurrency: { name: 'HashKey EcoPoints', symbol: 'HSK', decimals: 18 },
|
|
3574
3574
|
infoURL: 'https://hsk.xyz',
|
|
3575
3575
|
shortName: 'HSK',
|
|
3576
3576
|
chainId: 177,
|
|
3577
3577
|
networkId: 177,
|
|
3578
|
-
explorers: [
|
|
3578
|
+
explorers: [
|
|
3579
|
+
{
|
|
3580
|
+
name: 'blockscout',
|
|
3581
|
+
url: 'https://explorer.hsk.xyz',
|
|
3582
|
+
icon: 'blockscout',
|
|
3583
|
+
standard: 'EIP3091'
|
|
3584
|
+
}
|
|
3585
|
+
],
|
|
3579
3586
|
parent: { type: 'L2', chain: 'eip155-1' }
|
|
3580
3587
|
},
|
|
3581
3588
|
{
|
|
@@ -8535,6 +8542,24 @@ const chainArray = [
|
|
|
8535
8542
|
}
|
|
8536
8543
|
]
|
|
8537
8544
|
},
|
|
8545
|
+
{
|
|
8546
|
+
name: 'Electra Network',
|
|
8547
|
+
chain: 'Electra',
|
|
8548
|
+
rpc: [ 'https://rpc.electranetwork.tech' ],
|
|
8549
|
+
faucets: [],
|
|
8550
|
+
nativeCurrency: { name: 'Electra', symbol: 'ELC', decimals: 18 },
|
|
8551
|
+
infoURL: 'https://www.electranetwork.tech',
|
|
8552
|
+
shortName: 'elc',
|
|
8553
|
+
chainId: 861,
|
|
8554
|
+
networkId: 861,
|
|
8555
|
+
explorers: [
|
|
8556
|
+
{
|
|
8557
|
+
name: 'Electra Explorer',
|
|
8558
|
+
url: 'https://scan.electranetwork.tech',
|
|
8559
|
+
standard: 'none'
|
|
8560
|
+
}
|
|
8561
|
+
]
|
|
8562
|
+
},
|
|
8538
8563
|
{
|
|
8539
8564
|
name: 'Fantasia Chain Mainnet',
|
|
8540
8565
|
chain: 'FSC',
|
|
@@ -8557,6 +8582,24 @@ const chainArray = [
|
|
|
8557
8582
|
}
|
|
8558
8583
|
]
|
|
8559
8584
|
},
|
|
8585
|
+
{
|
|
8586
|
+
name: 'Electra Test Network',
|
|
8587
|
+
chain: 'Electra',
|
|
8588
|
+
rpc: [ 'http://rpc.testnet.electranetwork.tech' ],
|
|
8589
|
+
faucets: [],
|
|
8590
|
+
nativeCurrency: { name: 'Test Electra', symbol: 'TELC', decimals: 18 },
|
|
8591
|
+
infoURL: 'https://scan.testnet.electranetwork.tech',
|
|
8592
|
+
shortName: 'telc',
|
|
8593
|
+
chainId: 871,
|
|
8594
|
+
networkId: 871,
|
|
8595
|
+
explorers: [
|
|
8596
|
+
{
|
|
8597
|
+
name: 'Electra Testnet Explorer',
|
|
8598
|
+
url: 'https://scan.testnet.electranetwork.tech',
|
|
8599
|
+
standard: 'none'
|
|
8600
|
+
}
|
|
8601
|
+
]
|
|
8602
|
+
},
|
|
8560
8603
|
{
|
|
8561
8604
|
name: 'Bandai Namco Research Verse Mainnet',
|
|
8562
8605
|
chain: 'Bandai Namco Research Verse',
|
|
@@ -20565,7 +20608,7 @@ const chainArray = [
|
|
|
20565
20608
|
explorers: []
|
|
20566
20609
|
},
|
|
20567
20610
|
{
|
|
20568
|
-
name: 'InitVerse
|
|
20611
|
+
name: 'InitVerse genesis testnet',
|
|
20569
20612
|
chain: 'InitVerse',
|
|
20570
20613
|
rpc: [ 'http://rpc-testnet.inichain.com' ],
|
|
20571
20614
|
faucets: [],
|
|
@@ -24380,6 +24423,26 @@ const chainArray = [
|
|
|
24380
24423
|
}
|
|
24381
24424
|
]
|
|
24382
24425
|
},
|
|
24426
|
+
{
|
|
24427
|
+
name: 'eGoldChain',
|
|
24428
|
+
chain: 'EGC',
|
|
24429
|
+
icon: 'egoldchain',
|
|
24430
|
+
rpc: [ 'https://rpc.egoldchain.com', 'wss://rpc.egoldchain.com' ],
|
|
24431
|
+
faucets: [],
|
|
24432
|
+
nativeCurrency: { name: 'Aurum', symbol: 'XAU', decimals: 18 },
|
|
24433
|
+
infoURL: 'https://www.egoldchain.com',
|
|
24434
|
+
shortName: 'egoldchain',
|
|
24435
|
+
chainId: 11451,
|
|
24436
|
+
networkId: 11451,
|
|
24437
|
+
explorers: [
|
|
24438
|
+
{
|
|
24439
|
+
name: 'eGoldChain Block Explorer',
|
|
24440
|
+
url: 'https://egoldscan.io',
|
|
24441
|
+
standard: 'none',
|
|
24442
|
+
icon: 'egoldchain'
|
|
24443
|
+
}
|
|
24444
|
+
]
|
|
24445
|
+
},
|
|
24383
24446
|
{
|
|
24384
24447
|
name: 'BEVM Mainnet',
|
|
24385
24448
|
chain: 'BEVM',
|
|
@@ -33036,6 +33099,25 @@ const chainArray = [
|
|
|
33036
33099
|
}
|
|
33037
33100
|
]
|
|
33038
33101
|
},
|
|
33102
|
+
{
|
|
33103
|
+
name: 'Edge Matrix Chain Sepolia',
|
|
33104
|
+
chain: 'EMC Sepolia',
|
|
33105
|
+
icon: 'emctest',
|
|
33106
|
+
rpc: [ 'https://rpc1-sepolia.emc.network' ],
|
|
33107
|
+
faucets: [],
|
|
33108
|
+
nativeCurrency: { name: 'Edge Matrix Chain Token', symbol: 'EMC', decimals: 18 },
|
|
33109
|
+
infoURL: '',
|
|
33110
|
+
shortName: 'EMCSepolia',
|
|
33111
|
+
chainId: 99879,
|
|
33112
|
+
networkId: 99879,
|
|
33113
|
+
explorers: [
|
|
33114
|
+
{
|
|
33115
|
+
name: 'blockscout',
|
|
33116
|
+
url: 'https://sepolia.emcscan.com',
|
|
33117
|
+
standard: 'EIP3091'
|
|
33118
|
+
}
|
|
33119
|
+
]
|
|
33120
|
+
},
|
|
33039
33121
|
{
|
|
33040
33122
|
name: 'UB Smart Chain(testnet)',
|
|
33041
33123
|
chain: 'USC',
|
|
@@ -33807,6 +33889,29 @@ const chainArray = [
|
|
|
33807
33889
|
]
|
|
33808
33890
|
}
|
|
33809
33891
|
},
|
|
33892
|
+
{
|
|
33893
|
+
name: 'eGoldChain Testnet',
|
|
33894
|
+
chain: 'EGC',
|
|
33895
|
+
icon: 'egoldchain',
|
|
33896
|
+
rpc: [
|
|
33897
|
+
'https://rpc-testnet.egoldchain.com',
|
|
33898
|
+
'wss://rpc-testnet.egoldchain.com'
|
|
33899
|
+
],
|
|
33900
|
+
faucets: [],
|
|
33901
|
+
nativeCurrency: { name: 'Aurum', symbol: 'XAU', decimals: 18 },
|
|
33902
|
+
infoURL: 'https://www.egoldchain.com',
|
|
33903
|
+
shortName: 'egoldchaint',
|
|
33904
|
+
chainId: 111451,
|
|
33905
|
+
networkId: 111451,
|
|
33906
|
+
explorers: [
|
|
33907
|
+
{
|
|
33908
|
+
name: 'eGoldChain Block Explorer',
|
|
33909
|
+
url: 'http://testnet.egoldscan.io',
|
|
33910
|
+
standard: 'none',
|
|
33911
|
+
icon: 'egoldchain'
|
|
33912
|
+
}
|
|
33913
|
+
]
|
|
33914
|
+
},
|
|
33810
33915
|
{
|
|
33811
33916
|
name: 'Metachain One Mainnet',
|
|
33812
33917
|
chain: 'METAO',
|
|
@@ -38758,6 +38863,32 @@ const chainArray = [
|
|
|
38758
38863
|
icon: 'ethereum',
|
|
38759
38864
|
explorers: []
|
|
38760
38865
|
},
|
|
38866
|
+
{
|
|
38867
|
+
name: 'Zuux chain testnet',
|
|
38868
|
+
title: 'Zuux chain testnet',
|
|
38869
|
+
chain: 'zuuxchain',
|
|
38870
|
+
icon: 'zuuxchain',
|
|
38871
|
+
rpc: [ 'https://rpc.zuux.network' ],
|
|
38872
|
+
features: [ { name: 'none' } ],
|
|
38873
|
+
faucets: [ 'https://www.zuuxlend.xyz/faucet' ],
|
|
38874
|
+
nativeCurrency: { name: 'ZUUX', symbol: 'ZUUX', decimals: 18 },
|
|
38875
|
+
infoURL: 'https://www.zuux.network',
|
|
38876
|
+
shortName: 'zuuxchain',
|
|
38877
|
+
chainId: 4284265,
|
|
38878
|
+
networkId: 4284265,
|
|
38879
|
+
explorers: [
|
|
38880
|
+
{
|
|
38881
|
+
name: 'Zuux chain explorer',
|
|
38882
|
+
url: 'https://blockscout.zuux.network',
|
|
38883
|
+
standard: 'EIP3091'
|
|
38884
|
+
},
|
|
38885
|
+
{
|
|
38886
|
+
name: 'Zuux chain explorer',
|
|
38887
|
+
url: 'https://explorer.zuux.network',
|
|
38888
|
+
standard: 'EIP3091'
|
|
38889
|
+
}
|
|
38890
|
+
]
|
|
38891
|
+
},
|
|
38761
38892
|
{
|
|
38762
38893
|
name: 'Altar Testnet',
|
|
38763
38894
|
chain: 'Altar',
|
|
@@ -39933,6 +40064,26 @@ const chainArray = [
|
|
|
39933
40064
|
}
|
|
39934
40065
|
]
|
|
39935
40066
|
},
|
|
40067
|
+
{
|
|
40068
|
+
name: 'SoonChain Sepolia Devnet',
|
|
40069
|
+
chain: 'SoonChain Devnet Sepolia',
|
|
40070
|
+
rpc: [ 'https://sepolia.rpc.soonchain.ai' ],
|
|
40071
|
+
faucets: [ 'https://console.optimism.io/faucet' ],
|
|
40072
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
40073
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
40074
|
+
infoURL: 'https://soonchain.ai',
|
|
40075
|
+
shortName: 'Soon-Devnet',
|
|
40076
|
+
chainId: 20221001,
|
|
40077
|
+
networkId: 20221001,
|
|
40078
|
+
icon: 'soonchain',
|
|
40079
|
+
explorers: [
|
|
40080
|
+
{
|
|
40081
|
+
name: 'Soon Scan',
|
|
40082
|
+
url: 'https://sepolia.explorer.soonchain.ai',
|
|
40083
|
+
standard: 'none'
|
|
40084
|
+
}
|
|
40085
|
+
]
|
|
40086
|
+
},
|
|
39936
40087
|
{
|
|
39937
40088
|
name: 'Vcity Testnet',
|
|
39938
40089
|
chain: 'VCITY',
|
|
@@ -40269,9 +40420,13 @@ const chainArray = [
|
|
|
40269
40420
|
name: 'Xone Testnet',
|
|
40270
40421
|
chain: 'XOC',
|
|
40271
40422
|
icon: 'xone-test',
|
|
40272
|
-
rpc: [
|
|
40423
|
+
rpc: [
|
|
40424
|
+
'https://rpc-testnet.xone.plus',
|
|
40425
|
+
'https://rpc-testnet.xone.org',
|
|
40426
|
+
'https://rpc-testnet.knight.center'
|
|
40427
|
+
],
|
|
40273
40428
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
40274
|
-
faucets: [],
|
|
40429
|
+
faucets: [ 'https://faucet.xone.plus/' ],
|
|
40275
40430
|
nativeCurrency: { name: 'Xone Coin', symbol: 'XOC', decimals: 18 },
|
|
40276
40431
|
infoURL: 'https://xone.plus',
|
|
40277
40432
|
shortName: 'txoc',
|
|
@@ -40656,8 +40811,8 @@ const chainArray = [
|
|
|
40656
40811
|
'https://autonity.rpc.web3cdn.network/testnet',
|
|
40657
40812
|
'wss://autonity.rpc.web3cdn.network/testnet/ws',
|
|
40658
40813
|
'https://autonity-piccadilly.rpc.subquery.network/public',
|
|
40659
|
-
'https://
|
|
40660
|
-
'wss://
|
|
40814
|
+
'https://piccadilly.autonity-apis.com',
|
|
40815
|
+
'wss://piccadilly-ws.autonity-apis.com'
|
|
40661
40816
|
],
|
|
40662
40817
|
faucets: [],
|
|
40663
40818
|
nativeCurrency: { name: 'Piccadilly Auton', symbol: 'ATN', decimals: 18 },
|