eth-chainlist 0.0.806 → 0.0.808
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 +157 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.808 (2026-08-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.807 ([4b1c463](https://github.com/poowf/eth-chainlist/commit/4b1c463f8cab4894dfdbed196fd21c22c3e3d84d))
|
|
9
|
+
* update chain data ([e5c3228](https://github.com/poowf/eth-chainlist/commit/e5c3228951708aab735b901b47c76f25c0a0b46d))
|
|
10
|
+
|
|
11
|
+
### 0.0.807 (2026-08-14)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.806 ([dcf7665](https://github.com/poowf/eth-chainlist/commit/dcf76658fb2708b57be968209b6712c1856d8436))
|
|
17
|
+
* update chain data ([65c86c4](https://github.com/poowf/eth-chainlist/commit/65c86c4b7689d2548088262e190fc5f0bf4940dd))
|
|
18
|
+
|
|
3
19
|
### 0.0.806 (2026-08-13)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -6730,7 +6730,7 @@ const chainArray = [
|
|
|
6730
6730
|
{
|
|
6731
6731
|
name: 'Ozone Chain Testnet',
|
|
6732
6732
|
chain: 'OZONE',
|
|
6733
|
-
rpc: [ 'https://
|
|
6733
|
+
rpc: [ 'https://node2.testnet.ozonechain.io' ],
|
|
6734
6734
|
faucets: [],
|
|
6735
6735
|
nativeCurrency: { name: 'OZONE', symbol: 'OZO', decimals: 18 },
|
|
6736
6736
|
infoURL: 'https://ozonechain.io',
|
|
@@ -18109,6 +18109,29 @@ const chainArray = [
|
|
|
18109
18109
|
bridges: [ { url: 'https://bridge-ui.cardona.zkevm-rpc.com' } ]
|
|
18110
18110
|
}
|
|
18111
18111
|
},
|
|
18112
|
+
{
|
|
18113
|
+
name: 'Haus Chain Testnet',
|
|
18114
|
+
chain: 'HAUS',
|
|
18115
|
+
rpc: [
|
|
18116
|
+
'https://rpc-testnet.hausserver.xyz',
|
|
18117
|
+
'wss://rpc-testnet.hausserver.xyz'
|
|
18118
|
+
],
|
|
18119
|
+
faucets: [ 'https://faucet-testnet.hausserver.xyz' ],
|
|
18120
|
+
nativeCurrency: { name: 'Haus', symbol: 'HAUS', decimals: 18 },
|
|
18121
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
18122
|
+
infoURL: 'https://www.hausserver.xyz',
|
|
18123
|
+
shortName: 't-haus',
|
|
18124
|
+
chainId: 2443,
|
|
18125
|
+
networkId: 2443,
|
|
18126
|
+
status: 'active',
|
|
18127
|
+
explorers: [
|
|
18128
|
+
{
|
|
18129
|
+
name: 'Haus Chain Testnet Explorer',
|
|
18130
|
+
url: 'https://explorer-testnet.hausserver.xyz',
|
|
18131
|
+
standard: 'EIP3091'
|
|
18132
|
+
}
|
|
18133
|
+
]
|
|
18134
|
+
},
|
|
18112
18135
|
{
|
|
18113
18136
|
name: 'Hybrid Chain Network Testnet',
|
|
18114
18137
|
chain: 'HYBRID',
|
|
@@ -25308,6 +25331,27 @@ const chainArray = [
|
|
|
25308
25331
|
}
|
|
25309
25332
|
]
|
|
25310
25333
|
},
|
|
25334
|
+
{
|
|
25335
|
+
name: 'Racaille Smart Chain',
|
|
25336
|
+
chain: 'RNR',
|
|
25337
|
+
icon: 'racaille',
|
|
25338
|
+
rpc: [ 'https://rpc.racaille.dev' ],
|
|
25339
|
+
faucets: [],
|
|
25340
|
+
nativeCurrency: { name: 'Racaille', symbol: 'RNR', decimals: 18 },
|
|
25341
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
25342
|
+
infoURL: 'https://racaille.dev',
|
|
25343
|
+
shortName: 'rnr',
|
|
25344
|
+
chainId: 7676,
|
|
25345
|
+
networkId: 7676,
|
|
25346
|
+
explorers: [
|
|
25347
|
+
{
|
|
25348
|
+
name: 'blockscout',
|
|
25349
|
+
url: 'https://explorer.racaille.dev',
|
|
25350
|
+
icon: 'blockscout',
|
|
25351
|
+
standard: 'EIP3091'
|
|
25352
|
+
}
|
|
25353
|
+
]
|
|
25354
|
+
},
|
|
25311
25355
|
{
|
|
25312
25356
|
name: 'Canto',
|
|
25313
25357
|
chain: 'Canto',
|
|
@@ -25595,6 +25639,25 @@ const chainArray = [
|
|
|
25595
25639
|
}
|
|
25596
25640
|
]
|
|
25597
25641
|
},
|
|
25642
|
+
{
|
|
25643
|
+
name: 'HyveChain',
|
|
25644
|
+
chain: 'HYVE',
|
|
25645
|
+
rpc: [ 'https://rpc.hyvechain.com' ],
|
|
25646
|
+
faucets: [],
|
|
25647
|
+
nativeCurrency: { name: 'HYVE', symbol: 'HYVE', decimals: 18 },
|
|
25648
|
+
infoURL: 'https://hyvechain.com',
|
|
25649
|
+
shortName: 'hyve',
|
|
25650
|
+
chainId: 7847,
|
|
25651
|
+
networkId: 7847,
|
|
25652
|
+
icon: 'hyvechain',
|
|
25653
|
+
explorers: [
|
|
25654
|
+
{
|
|
25655
|
+
name: 'HyveChain Explorer',
|
|
25656
|
+
url: 'https://explorer.hyvechain.com',
|
|
25657
|
+
standard: 'EIP3091'
|
|
25658
|
+
}
|
|
25659
|
+
]
|
|
25660
|
+
},
|
|
25598
25661
|
{
|
|
25599
25662
|
name: 'MaalChain Testnet',
|
|
25600
25663
|
chain: 'MaalChain Testnet',
|
|
@@ -27071,6 +27134,25 @@ const chainArray = [
|
|
|
27071
27134
|
}
|
|
27072
27135
|
]
|
|
27073
27136
|
},
|
|
27137
|
+
{
|
|
27138
|
+
name: 'Garuda Chain Mainnet',
|
|
27139
|
+
chain: 'GDC',
|
|
27140
|
+
rpc: [ 'https://rpc.garudachain.id', 'https://rpc2.garudachain.id' ],
|
|
27141
|
+
faucets: [],
|
|
27142
|
+
nativeCurrency: { name: 'Garuda Digital Coin', symbol: 'GDC', decimals: 18 },
|
|
27143
|
+
infoURL: 'https://garudachain.id',
|
|
27144
|
+
shortName: 'garuda',
|
|
27145
|
+
chainId: 8846,
|
|
27146
|
+
networkId: 8846,
|
|
27147
|
+
explorers: [
|
|
27148
|
+
{
|
|
27149
|
+
name: 'Garuda Explorer',
|
|
27150
|
+
url: 'https://explorer.garudachain.id',
|
|
27151
|
+
standard: 'EIP3091'
|
|
27152
|
+
}
|
|
27153
|
+
],
|
|
27154
|
+
status: 'active'
|
|
27155
|
+
},
|
|
27074
27156
|
{
|
|
27075
27157
|
name: 'MARO Blockchain Mainnet',
|
|
27076
27158
|
chain: 'MARO Blockchain',
|
|
@@ -32337,6 +32419,25 @@ const chainArray = [
|
|
|
32337
32419
|
},
|
|
32338
32420
|
status: 'active'
|
|
32339
32421
|
},
|
|
32422
|
+
{
|
|
32423
|
+
name: 'Aglais Testnet (Quip Network)',
|
|
32424
|
+
chain: 'AGLS',
|
|
32425
|
+
icon: 'aglais',
|
|
32426
|
+
rpc: [ 'https://evm-rpc.testnet.quip.network:20049' ],
|
|
32427
|
+
faucets: [],
|
|
32428
|
+
explorers: [
|
|
32429
|
+
{
|
|
32430
|
+
name: 'Aglais Explorer',
|
|
32431
|
+
url: 'https://explorer.testnet.quip.network',
|
|
32432
|
+
standard: 'EIP3091'
|
|
32433
|
+
}
|
|
32434
|
+
],
|
|
32435
|
+
nativeCurrency: { name: 'AGLS', symbol: 'AGLS', decimals: 18 },
|
|
32436
|
+
infoURL: 'https://agls.quip.network',
|
|
32437
|
+
shortName: 'agls',
|
|
32438
|
+
chainId: 20033,
|
|
32439
|
+
networkId: 20033
|
|
32440
|
+
},
|
|
32340
32441
|
{
|
|
32341
32442
|
name: 'Niza Chain Mainnet',
|
|
32342
32443
|
chain: 'NIZA',
|
|
@@ -38487,6 +38588,26 @@ const chainArray = [
|
|
|
38487
38588
|
}
|
|
38488
38589
|
]
|
|
38489
38590
|
},
|
|
38591
|
+
{
|
|
38592
|
+
name: 'Veri5',
|
|
38593
|
+
chain: 'VERI5',
|
|
38594
|
+
icon: 'veri5',
|
|
38595
|
+
rpc: [ 'https://rpc0.veri5.network' ],
|
|
38596
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
38597
|
+
faucets: [],
|
|
38598
|
+
nativeCurrency: { name: 'Unit', symbol: 'UNIT', decimals: 18 },
|
|
38599
|
+
infoURL: 'https://veri5.technology',
|
|
38600
|
+
shortName: 'veri5',
|
|
38601
|
+
chainId: 63868,
|
|
38602
|
+
networkId: 63868,
|
|
38603
|
+
explorers: [
|
|
38604
|
+
{
|
|
38605
|
+
name: 'Veri5 Explorer',
|
|
38606
|
+
url: 'https://explorer.veri5.network',
|
|
38607
|
+
standard: 'EIP3091'
|
|
38608
|
+
}
|
|
38609
|
+
]
|
|
38610
|
+
},
|
|
38490
38611
|
{
|
|
38491
38612
|
name: 'XCHAIN Testnet',
|
|
38492
38613
|
chain: 'XCHAIN',
|
|
@@ -43039,6 +43160,26 @@ const chainArray = [
|
|
|
43039
43160
|
}
|
|
43040
43161
|
]
|
|
43041
43162
|
},
|
|
43163
|
+
{
|
|
43164
|
+
name: 'RPHX Mainnet',
|
|
43165
|
+
chain: 'RPHX',
|
|
43166
|
+
icon: 'rphx',
|
|
43167
|
+
rpc: [ 'https://rpc.rphxscan.com' ],
|
|
43168
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
43169
|
+
faucets: [],
|
|
43170
|
+
nativeCurrency: { name: 'RPHX', symbol: 'RPHX', decimals: 18 },
|
|
43171
|
+
infoURL: 'https://rphxscan.com',
|
|
43172
|
+
shortName: 'rphx',
|
|
43173
|
+
chainId: 130526,
|
|
43174
|
+
networkId: 130526,
|
|
43175
|
+
explorers: [
|
|
43176
|
+
{
|
|
43177
|
+
name: 'RphxScan',
|
|
43178
|
+
url: 'https://rphxscan.com',
|
|
43179
|
+
standard: 'EIP3091'
|
|
43180
|
+
}
|
|
43181
|
+
]
|
|
43182
|
+
},
|
|
43042
43183
|
{
|
|
43043
43184
|
name: 'Odyssey Chain (Testnet)',
|
|
43044
43185
|
chain: 'DIONE',
|
|
@@ -52492,6 +52633,21 @@ const chainArray = [
|
|
|
52492
52633
|
],
|
|
52493
52634
|
parent: { type: 'L2', chain: 'eip155-11155111' }
|
|
52494
52635
|
},
|
|
52636
|
+
{
|
|
52637
|
+
name: 'Recyclefarm Carbon Network Sepolia',
|
|
52638
|
+
chain: 'ETH',
|
|
52639
|
+
rpc: [],
|
|
52640
|
+
faucets: [],
|
|
52641
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
52642
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
52643
|
+
infoURL: 'https://recyclefarm.org/',
|
|
52644
|
+
shortName: 'recasep',
|
|
52645
|
+
chainId: 82696765,
|
|
52646
|
+
networkId: 82696765,
|
|
52647
|
+
slip44: 1,
|
|
52648
|
+
explorers: [],
|
|
52649
|
+
parent: { type: 'L2', chain: 'eip155-11155111' }
|
|
52650
|
+
},
|
|
52495
52651
|
{
|
|
52496
52652
|
name: 'Backstop Testnet',
|
|
52497
52653
|
chain: 'backstopTestnet',
|