eth-chainlist 0.0.811 → 0.0.813
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 +70 -29
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.813 (2026-08-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.812 ([a537350](https://github.com/poowf/eth-chainlist/commit/a537350a3830e21a6faa44d2cf763fa0933f6329))
|
|
9
|
+
* update chain data ([f3220e4](https://github.com/poowf/eth-chainlist/commit/f3220e48f31efaf4c135f2df7f6ccbdafb54a4fd))
|
|
10
|
+
|
|
11
|
+
### 0.0.812 (2026-08-20)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.811 ([42bef4c](https://github.com/poowf/eth-chainlist/commit/42bef4cbe1afaacc5baeae932fd6ccd2789f0f33))
|
|
17
|
+
* update chain data ([4f3240d](https://github.com/poowf/eth-chainlist/commit/4f3240d312dd6bb5b0fbc406af9e3e88441fafda))
|
|
18
|
+
|
|
3
19
|
### 0.0.811 (2026-08-19)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -2798,20 +2798,21 @@ const chainArray = [
|
|
|
2798
2798
|
networkId: 132
|
|
2799
2799
|
},
|
|
2800
2800
|
{
|
|
2801
|
-
name: '
|
|
2802
|
-
title: '
|
|
2803
|
-
chain: '
|
|
2801
|
+
name: 'HSKChain Testnet',
|
|
2802
|
+
title: 'HSKChain Testnet',
|
|
2803
|
+
chain: 'HSKChain Testnet',
|
|
2804
|
+
icon: 'hskchain',
|
|
2804
2805
|
rpc: [ 'https://testnet.hsk.xyz' ],
|
|
2805
2806
|
faucets: [],
|
|
2806
2807
|
nativeCurrency: { name: 'HashKey EcoPoints', symbol: 'HSK', decimals: 18 },
|
|
2807
|
-
infoURL: 'https://
|
|
2808
|
+
infoURL: 'https://hskchain.net',
|
|
2808
2809
|
shortName: 'HSKT',
|
|
2809
2810
|
chainId: 133,
|
|
2810
2811
|
networkId: 133,
|
|
2811
2812
|
explorers: [
|
|
2812
2813
|
{
|
|
2813
2814
|
name: 'blockscout',
|
|
2814
|
-
url: 'https://testnet-explorer.
|
|
2815
|
+
url: 'https://testnet-explorer.hskchain.net',
|
|
2815
2816
|
icon: 'blockscout',
|
|
2816
2817
|
standard: 'EIP3091'
|
|
2817
2818
|
}
|
|
@@ -3441,6 +3442,7 @@ const chainArray = [
|
|
|
3441
3442
|
{
|
|
3442
3443
|
name: 'Farm Chain',
|
|
3443
3444
|
chain: 'FMC',
|
|
3445
|
+
icon: 'fmc',
|
|
3444
3446
|
rpc: [ 'https://rpc.fmcscan.com' ],
|
|
3445
3447
|
faucets: [],
|
|
3446
3448
|
nativeCurrency: { name: 'Farm Coin', symbol: 'FMC', decimals: 18 },
|
|
@@ -3674,26 +3676,21 @@ const chainArray = [
|
|
|
3674
3676
|
]
|
|
3675
3677
|
},
|
|
3676
3678
|
{
|
|
3677
|
-
name: '
|
|
3678
|
-
title: '
|
|
3679
|
-
chain: '
|
|
3679
|
+
name: 'HSKChain',
|
|
3680
|
+
title: 'HSKChain',
|
|
3681
|
+
chain: 'HSKChain',
|
|
3682
|
+
icon: 'hskchain',
|
|
3680
3683
|
rpc: [ 'https://mainnet.hsk.xyz' ],
|
|
3681
3684
|
faucets: [],
|
|
3682
3685
|
nativeCurrency: { name: 'HashKey EcoPoints', symbol: 'HSK', decimals: 18 },
|
|
3683
|
-
infoURL: 'https://
|
|
3686
|
+
infoURL: 'https://hskchain.net',
|
|
3684
3687
|
shortName: 'hsk',
|
|
3685
3688
|
chainId: 177,
|
|
3686
3689
|
networkId: 177,
|
|
3687
3690
|
explorers: [
|
|
3688
3691
|
{
|
|
3689
3692
|
name: 'blockscout',
|
|
3690
|
-
url: 'https://
|
|
3691
|
-
icon: 'blockscout',
|
|
3692
|
-
standard: 'EIP3091'
|
|
3693
|
-
},
|
|
3694
|
-
{
|
|
3695
|
-
name: 'blockscout',
|
|
3696
|
-
url: 'https://explorer.hsk.xyz',
|
|
3693
|
+
url: 'https://hsk.blockscout.com',
|
|
3697
3694
|
icon: 'blockscout',
|
|
3698
3695
|
standard: 'EIP3091'
|
|
3699
3696
|
}
|
|
@@ -11015,6 +11012,25 @@ const chainArray = [
|
|
|
11015
11012
|
}
|
|
11016
11013
|
]
|
|
11017
11014
|
},
|
|
11015
|
+
{
|
|
11016
|
+
name: 'Nura Chain',
|
|
11017
|
+
chain: 'Nura',
|
|
11018
|
+
rpc: [ 'https://rpc.nurachain.net' ],
|
|
11019
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
11020
|
+
faucets: [],
|
|
11021
|
+
nativeCurrency: { name: 'Nura Coin', symbol: 'NURA', decimals: 18 },
|
|
11022
|
+
infoURL: 'https://nurachain.net',
|
|
11023
|
+
shortName: 'nura',
|
|
11024
|
+
chainId: 1020,
|
|
11025
|
+
networkId: 1020,
|
|
11026
|
+
explorers: [
|
|
11027
|
+
{
|
|
11028
|
+
name: 'Nura Explorer',
|
|
11029
|
+
url: 'https://explorer.nurachain.net',
|
|
11030
|
+
standard: 'EIP3091'
|
|
11031
|
+
}
|
|
11032
|
+
]
|
|
11033
|
+
},
|
|
11018
11034
|
{
|
|
11019
11035
|
name: 'Sakura',
|
|
11020
11036
|
chain: 'Sakura',
|
|
@@ -23184,14 +23200,25 @@ const chainArray = [
|
|
|
23184
23200
|
{
|
|
23185
23201
|
name: 'Orden Global',
|
|
23186
23202
|
chain: 'OGB',
|
|
23187
|
-
rpc: [
|
|
23203
|
+
rpc: [
|
|
23204
|
+
'https://ordenglobal-rpc.com',
|
|
23205
|
+
'https://rpc.ordenglobal-rpc.com'
|
|
23206
|
+
],
|
|
23188
23207
|
faucets: [],
|
|
23189
23208
|
nativeCurrency: { name: 'Origen', symbol: 'ORIGEN', decimals: 18 },
|
|
23190
23209
|
infoURL: 'https://ordenglobal.org',
|
|
23191
23210
|
shortName: 'ogb',
|
|
23192
23211
|
chainId: 5550,
|
|
23193
23212
|
networkId: 5550,
|
|
23194
|
-
|
|
23213
|
+
icon: 'ordenglobal',
|
|
23214
|
+
explorers: [
|
|
23215
|
+
{
|
|
23216
|
+
name: 'ordenscan',
|
|
23217
|
+
url: 'https://ordenscan.com',
|
|
23218
|
+
standard: 'EIP3091'
|
|
23219
|
+
}
|
|
23220
|
+
],
|
|
23221
|
+
status: 'active'
|
|
23195
23222
|
},
|
|
23196
23223
|
{
|
|
23197
23224
|
name: 'Nahmii 2 Mainnet',
|
|
@@ -40052,10 +40079,10 @@ const chainArray = [
|
|
|
40052
40079
|
icon: 'berachain',
|
|
40053
40080
|
explorers: [
|
|
40054
40081
|
{
|
|
40055
|
-
name: '
|
|
40056
|
-
url: 'https://
|
|
40082
|
+
name: 'Berascan Bepolia Testnet Block Explorer',
|
|
40083
|
+
url: 'https://testnet.berascan.com',
|
|
40057
40084
|
icon: 'berachain',
|
|
40058
|
-
standard: '
|
|
40085
|
+
standard: 'EIP3091'
|
|
40059
40086
|
}
|
|
40060
40087
|
]
|
|
40061
40088
|
},
|
|
@@ -40120,14 +40147,9 @@ const chainArray = [
|
|
|
40120
40147
|
icon: 'berachain',
|
|
40121
40148
|
explorers: [
|
|
40122
40149
|
{
|
|
40123
|
-
name: 'Berascan',
|
|
40150
|
+
name: 'Berascan Berachain Block Explorer',
|
|
40124
40151
|
url: 'https://berascan.com',
|
|
40125
40152
|
standard: 'EIP3091'
|
|
40126
|
-
},
|
|
40127
|
-
{
|
|
40128
|
-
name: 'Beratrail',
|
|
40129
|
-
url: 'https://beratrail.io',
|
|
40130
|
-
standard: 'EIP3091'
|
|
40131
40153
|
}
|
|
40132
40154
|
]
|
|
40133
40155
|
},
|
|
@@ -42442,14 +42464,33 @@ const chainArray = [
|
|
|
42442
42464
|
chain: 'XITCOIN',
|
|
42443
42465
|
faucets: [],
|
|
42444
42466
|
rpc: [ 'https://network.xitcoin.org' ],
|
|
42445
|
-
nativeCurrency: { name: 'Xitcoin', symbol: '
|
|
42446
|
-
infoURL: 'https://
|
|
42467
|
+
nativeCurrency: { name: 'Xitcoin', symbol: 'XTC', decimals: 18 },
|
|
42468
|
+
infoURL: 'https://xitcoin.gitbook.io/guide/',
|
|
42447
42469
|
shortName: 'Xitcoin',
|
|
42448
42470
|
chainId: 101088,
|
|
42449
42471
|
networkId: 101088,
|
|
42450
42472
|
icon: 'xitcoin',
|
|
42451
42473
|
explorers: []
|
|
42452
42474
|
},
|
|
42475
|
+
{
|
|
42476
|
+
name: 'Xitcoin Testnet',
|
|
42477
|
+
chain: 'XITCOIN',
|
|
42478
|
+
faucets: [ 'https://faucet-testnet.xitcoin.org/' ],
|
|
42479
|
+
rpc: [ 'https://evm-rpc-testnet.xitcoin.org' ],
|
|
42480
|
+
nativeCurrency: { name: 'Xitcoin', symbol: 'XTC', decimals: 18 },
|
|
42481
|
+
infoURL: 'https://xitcoin.gitbook.io/guide/',
|
|
42482
|
+
shortName: 'xtct',
|
|
42483
|
+
chainId: 101089,
|
|
42484
|
+
networkId: 101089,
|
|
42485
|
+
icon: 'xitcoin',
|
|
42486
|
+
explorers: [
|
|
42487
|
+
{
|
|
42488
|
+
name: 'Xitcoin Testnet Explorer',
|
|
42489
|
+
url: 'https://evm-explorer-testnet.xitcoin.org',
|
|
42490
|
+
standard: 'EIP3091'
|
|
42491
|
+
}
|
|
42492
|
+
]
|
|
42493
|
+
},
|
|
42453
42494
|
{
|
|
42454
42495
|
name: 'Creditcoin',
|
|
42455
42496
|
chain: 'CTC',
|