eth-chainlist 0.0.807 → 0.0.809
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 +211 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.809 (2026-08-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.808 ([61a8a76](https://github.com/poowf/eth-chainlist/commit/61a8a767094f24e7f0c5f0cdec3a4cf7dca31527))
|
|
9
|
+
* update chain data ([25ebcaf](https://github.com/poowf/eth-chainlist/commit/25ebcaf2def14b48bb0258c5ebd1a3d5d1e873fd))
|
|
10
|
+
|
|
11
|
+
### 0.0.808 (2026-08-15)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.807 ([4b1c463](https://github.com/poowf/eth-chainlist/commit/4b1c463f8cab4894dfdbed196fd21c22c3e3d84d))
|
|
17
|
+
* update chain data ([e5c3228](https://github.com/poowf/eth-chainlist/commit/e5c3228951708aab735b901b47c76f25c0a0b46d))
|
|
18
|
+
|
|
3
19
|
### 0.0.807 (2026-08-14)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -2891,7 +2891,8 @@ const chainArray = [
|
|
|
2891
2891
|
'https://polygon.gateway.tenderly.co',
|
|
2892
2892
|
'wss://polygon.gateway.tenderly.co',
|
|
2893
2893
|
'https://rpc.satelink.network/rpc/polygon',
|
|
2894
|
-
'https://rpcfree.com/polygon-rpc'
|
|
2894
|
+
'https://rpcfree.com/polygon-rpc',
|
|
2895
|
+
'wss://rpc.satelink.network/rpc/ws/polygon'
|
|
2895
2896
|
],
|
|
2896
2897
|
faucets: [],
|
|
2897
2898
|
nativeCurrency: { name: 'POL', symbol: 'POL', decimals: 18 },
|
|
@@ -5268,6 +5269,19 @@ const chainArray = [
|
|
|
5268
5269
|
{ name: 'hscan', url: 'https://hscan.org', standard: 'EIP3091' }
|
|
5269
5270
|
]
|
|
5270
5271
|
},
|
|
5272
|
+
{
|
|
5273
|
+
name: 'Orbinum',
|
|
5274
|
+
chain: 'ORB',
|
|
5275
|
+
icon: 'orbinum',
|
|
5276
|
+
rpc: [],
|
|
5277
|
+
faucets: [],
|
|
5278
|
+
nativeCurrency: { name: 'ORB', symbol: 'ORB', decimals: 18 },
|
|
5279
|
+
infoURL: 'https://orbinum.network',
|
|
5280
|
+
shortName: 'orbinum',
|
|
5281
|
+
chainId: 270,
|
|
5282
|
+
networkId: 270,
|
|
5283
|
+
status: 'incubating'
|
|
5284
|
+
},
|
|
5271
5285
|
{
|
|
5272
5286
|
name: 'EgonCoin Mainnet',
|
|
5273
5287
|
chain: 'EGON',
|
|
@@ -18109,6 +18123,29 @@ const chainArray = [
|
|
|
18109
18123
|
bridges: [ { url: 'https://bridge-ui.cardona.zkevm-rpc.com' } ]
|
|
18110
18124
|
}
|
|
18111
18125
|
},
|
|
18126
|
+
{
|
|
18127
|
+
name: 'Haus Chain Testnet',
|
|
18128
|
+
chain: 'HAUS',
|
|
18129
|
+
rpc: [
|
|
18130
|
+
'https://rpc-testnet.hausserver.xyz',
|
|
18131
|
+
'wss://rpc-testnet.hausserver.xyz'
|
|
18132
|
+
],
|
|
18133
|
+
faucets: [ 'https://faucet-testnet.hausserver.xyz' ],
|
|
18134
|
+
nativeCurrency: { name: 'Haus', symbol: 'HAUS', decimals: 18 },
|
|
18135
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
18136
|
+
infoURL: 'https://www.hausserver.xyz',
|
|
18137
|
+
shortName: 't-haus',
|
|
18138
|
+
chainId: 2443,
|
|
18139
|
+
networkId: 2443,
|
|
18140
|
+
status: 'active',
|
|
18141
|
+
explorers: [
|
|
18142
|
+
{
|
|
18143
|
+
name: 'Haus Chain Testnet Explorer',
|
|
18144
|
+
url: 'https://explorer-testnet.hausserver.xyz',
|
|
18145
|
+
standard: 'EIP3091'
|
|
18146
|
+
}
|
|
18147
|
+
]
|
|
18148
|
+
},
|
|
18112
18149
|
{
|
|
18113
18150
|
name: 'Hybrid Chain Network Testnet',
|
|
18114
18151
|
chain: 'HYBRID',
|
|
@@ -18617,6 +18654,28 @@ const chainArray = [
|
|
|
18617
18654
|
}
|
|
18618
18655
|
]
|
|
18619
18656
|
},
|
|
18657
|
+
{
|
|
18658
|
+
name: 'Orbinum Testnet',
|
|
18659
|
+
chain: 'ORB',
|
|
18660
|
+
icon: 'orbinum',
|
|
18661
|
+
rpc: [
|
|
18662
|
+
'https://rpc-1.testnet.orbinum.io',
|
|
18663
|
+
'https://rpc-2.testnet.orbinum.io'
|
|
18664
|
+
],
|
|
18665
|
+
faucets: [ 'https://faucet.orbinum.network' ],
|
|
18666
|
+
nativeCurrency: { name: 'ORB', symbol: 'ORB', decimals: 18 },
|
|
18667
|
+
infoURL: 'https://orbinum.network',
|
|
18668
|
+
shortName: 'orbinum-testnet',
|
|
18669
|
+
chainId: 2700,
|
|
18670
|
+
networkId: 2700,
|
|
18671
|
+
explorers: [
|
|
18672
|
+
{
|
|
18673
|
+
name: 'Orbinum Privacy Explorer',
|
|
18674
|
+
url: 'https://explorer.testnet.orbinum.network',
|
|
18675
|
+
standard: 'EIP3091'
|
|
18676
|
+
}
|
|
18677
|
+
]
|
|
18678
|
+
},
|
|
18620
18679
|
{
|
|
18621
18680
|
name: 'Morph Testnet',
|
|
18622
18681
|
chain: 'ETH',
|
|
@@ -23117,6 +23176,18 @@ const chainArray = [
|
|
|
23117
23176
|
chainId: 5545,
|
|
23118
23177
|
networkId: 5545
|
|
23119
23178
|
},
|
|
23179
|
+
{
|
|
23180
|
+
name: 'Orden Global',
|
|
23181
|
+
chain: 'OGB',
|
|
23182
|
+
rpc: [],
|
|
23183
|
+
faucets: [],
|
|
23184
|
+
nativeCurrency: { name: 'Origen', symbol: 'ORIGEN', decimals: 18 },
|
|
23185
|
+
infoURL: 'https://ordenglobal.org',
|
|
23186
|
+
shortName: 'ogb',
|
|
23187
|
+
chainId: 5550,
|
|
23188
|
+
networkId: 5550,
|
|
23189
|
+
status: 'incubating'
|
|
23190
|
+
},
|
|
23120
23191
|
{
|
|
23121
23192
|
name: 'Nahmii 2 Mainnet',
|
|
23122
23193
|
chain: 'Nahmii',
|
|
@@ -25308,6 +25379,27 @@ const chainArray = [
|
|
|
25308
25379
|
}
|
|
25309
25380
|
]
|
|
25310
25381
|
},
|
|
25382
|
+
{
|
|
25383
|
+
name: 'Racaille Smart Chain',
|
|
25384
|
+
chain: 'RNR',
|
|
25385
|
+
icon: 'racaille',
|
|
25386
|
+
rpc: [ 'https://rpc.racaille.dev' ],
|
|
25387
|
+
faucets: [],
|
|
25388
|
+
nativeCurrency: { name: 'Racaille', symbol: 'RNR', decimals: 18 },
|
|
25389
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
25390
|
+
infoURL: 'https://racaille.dev',
|
|
25391
|
+
shortName: 'rnr',
|
|
25392
|
+
chainId: 7676,
|
|
25393
|
+
networkId: 7676,
|
|
25394
|
+
explorers: [
|
|
25395
|
+
{
|
|
25396
|
+
name: 'blockscout',
|
|
25397
|
+
url: 'https://explorer.racaille.dev',
|
|
25398
|
+
icon: 'blockscout',
|
|
25399
|
+
standard: 'EIP3091'
|
|
25400
|
+
}
|
|
25401
|
+
]
|
|
25402
|
+
},
|
|
25311
25403
|
{
|
|
25312
25404
|
name: 'Canto',
|
|
25313
25405
|
chain: 'Canto',
|
|
@@ -25595,6 +25687,25 @@ const chainArray = [
|
|
|
25595
25687
|
}
|
|
25596
25688
|
]
|
|
25597
25689
|
},
|
|
25690
|
+
{
|
|
25691
|
+
name: 'HyveChain',
|
|
25692
|
+
chain: 'HYVE',
|
|
25693
|
+
rpc: [ 'https://rpc.hyvechain.com' ],
|
|
25694
|
+
faucets: [],
|
|
25695
|
+
nativeCurrency: { name: 'HYVE', symbol: 'HYVE', decimals: 18 },
|
|
25696
|
+
infoURL: 'https://hyvechain.com',
|
|
25697
|
+
shortName: 'hyve',
|
|
25698
|
+
chainId: 7847,
|
|
25699
|
+
networkId: 7847,
|
|
25700
|
+
icon: 'hyvechain',
|
|
25701
|
+
explorers: [
|
|
25702
|
+
{
|
|
25703
|
+
name: 'HyveChain Explorer',
|
|
25704
|
+
url: 'https://explorer.hyvechain.com',
|
|
25705
|
+
standard: 'EIP3091'
|
|
25706
|
+
}
|
|
25707
|
+
]
|
|
25708
|
+
},
|
|
25598
25709
|
{
|
|
25599
25710
|
name: 'MaalChain Testnet',
|
|
25600
25711
|
chain: 'MaalChain Testnet',
|
|
@@ -26708,7 +26819,8 @@ const chainArray = [
|
|
|
26708
26819
|
'https://base-rpc.publicnode.com',
|
|
26709
26820
|
'wss://base-rpc.publicnode.com',
|
|
26710
26821
|
'https://rpcfree.com/base-rpc',
|
|
26711
|
-
'https://rpc.baseazul.dev'
|
|
26822
|
+
'https://rpc.baseazul.dev',
|
|
26823
|
+
'https://rpc.satelink.network/rpc/base'
|
|
26712
26824
|
],
|
|
26713
26825
|
faucets: [],
|
|
26714
26826
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
@@ -26734,11 +26846,6 @@ const chainArray = [
|
|
|
26734
26846
|
url: 'https://base.dex.guru',
|
|
26735
26847
|
icon: 'dexguru',
|
|
26736
26848
|
standard: 'EIP3091'
|
|
26737
|
-
},
|
|
26738
|
-
{
|
|
26739
|
-
name: 'Routescan',
|
|
26740
|
-
url: 'https://base.superscan.network',
|
|
26741
|
-
standard: 'EIP3091'
|
|
26742
26849
|
}
|
|
26743
26850
|
],
|
|
26744
26851
|
status: 'active'
|
|
@@ -32356,6 +32463,25 @@ const chainArray = [
|
|
|
32356
32463
|
},
|
|
32357
32464
|
status: 'active'
|
|
32358
32465
|
},
|
|
32466
|
+
{
|
|
32467
|
+
name: 'Aglais Testnet (Quip Network)',
|
|
32468
|
+
chain: 'AGLS',
|
|
32469
|
+
icon: 'aglais',
|
|
32470
|
+
rpc: [ 'https://evm-rpc.testnet.quip.network:20049' ],
|
|
32471
|
+
faucets: [],
|
|
32472
|
+
explorers: [
|
|
32473
|
+
{
|
|
32474
|
+
name: 'Aglais Explorer',
|
|
32475
|
+
url: 'https://explorer.testnet.quip.network',
|
|
32476
|
+
standard: 'EIP3091'
|
|
32477
|
+
}
|
|
32478
|
+
],
|
|
32479
|
+
nativeCurrency: { name: 'AGLS', symbol: 'AGLS', decimals: 18 },
|
|
32480
|
+
infoURL: 'https://agls.quip.network',
|
|
32481
|
+
shortName: 'agls',
|
|
32482
|
+
chainId: 20033,
|
|
32483
|
+
networkId: 20033
|
|
32484
|
+
},
|
|
32359
32485
|
{
|
|
32360
32486
|
name: 'Niza Chain Mainnet',
|
|
32361
32487
|
chain: 'NIZA',
|
|
@@ -35365,7 +35491,8 @@ const chainArray = [
|
|
|
35365
35491
|
'https://arb1.arbitrum.io/rpc',
|
|
35366
35492
|
'https://arbitrum-one-rpc.publicnode.com',
|
|
35367
35493
|
'wss://arbitrum-one-rpc.publicnode.com',
|
|
35368
|
-
'https://rpcfree.com/arbitrum-rpc'
|
|
35494
|
+
'https://rpcfree.com/arbitrum-rpc',
|
|
35495
|
+
'https://rpc.satelink.network/rpc/arbitrum'
|
|
35369
35496
|
],
|
|
35370
35497
|
faucets: [],
|
|
35371
35498
|
explorers: [
|
|
@@ -38506,6 +38633,26 @@ const chainArray = [
|
|
|
38506
38633
|
}
|
|
38507
38634
|
]
|
|
38508
38635
|
},
|
|
38636
|
+
{
|
|
38637
|
+
name: 'Veri5',
|
|
38638
|
+
chain: 'VERI5',
|
|
38639
|
+
icon: 'veri5',
|
|
38640
|
+
rpc: [ 'https://rpc0.veri5.network' ],
|
|
38641
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
38642
|
+
faucets: [],
|
|
38643
|
+
nativeCurrency: { name: 'Unit', symbol: 'UNIT', decimals: 18 },
|
|
38644
|
+
infoURL: 'https://veri5.technology',
|
|
38645
|
+
shortName: 'veri5',
|
|
38646
|
+
chainId: 63868,
|
|
38647
|
+
networkId: 63868,
|
|
38648
|
+
explorers: [
|
|
38649
|
+
{
|
|
38650
|
+
name: 'Veri5 Explorer',
|
|
38651
|
+
url: 'https://explorer.veri5.network',
|
|
38652
|
+
standard: 'EIP3091'
|
|
38653
|
+
}
|
|
38654
|
+
]
|
|
38655
|
+
},
|
|
38509
38656
|
{
|
|
38510
38657
|
name: 'XCHAIN Testnet',
|
|
38511
38658
|
chain: 'XCHAIN',
|
|
@@ -39103,7 +39250,7 @@ const chainArray = [
|
|
|
39103
39250
|
]
|
|
39104
39251
|
},
|
|
39105
39252
|
{
|
|
39106
|
-
name: 'EAV7
|
|
39253
|
+
name: 'EAV7',
|
|
39107
39254
|
chain: 'EAV7',
|
|
39108
39255
|
icon: 'eav7',
|
|
39109
39256
|
rpc: [ 'https://rpc.eavscan.com' ],
|
|
@@ -39775,7 +39922,8 @@ const chainArray = [
|
|
|
39775
39922
|
'https://rpc-amoy.polygon.technology',
|
|
39776
39923
|
'https://polygon-amoy-bor-rpc.publicnode.com',
|
|
39777
39924
|
'wss://polygon-amoy-bor-rpc.publicnode.com',
|
|
39778
|
-
'https://polygon-amoy.drpc.org'
|
|
39925
|
+
'https://polygon-amoy.drpc.org',
|
|
39926
|
+
'https://rpc.satelink.network/rpc/amoy'
|
|
39779
39927
|
],
|
|
39780
39928
|
faucets: [ 'https://faucet.polygon.technology/' ],
|
|
39781
39929
|
nativeCurrency: { name: 'POL', symbol: 'POL', decimals: 18 },
|
|
@@ -47511,6 +47659,25 @@ const chainArray = [
|
|
|
47511
47659
|
],
|
|
47512
47660
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ]
|
|
47513
47661
|
},
|
|
47662
|
+
{
|
|
47663
|
+
name: 'HanChain Mainnet',
|
|
47664
|
+
chain: 'HAN',
|
|
47665
|
+
rpc: [ 'https://rpc.hanchain.cc/rpc' ],
|
|
47666
|
+
features: [ { name: 'EIP1559' } ],
|
|
47667
|
+
faucets: [],
|
|
47668
|
+
nativeCurrency: { name: 'HAN', symbol: 'HAN', decimals: 18 },
|
|
47669
|
+
infoURL: 'https://rpc.hanchain.cc',
|
|
47670
|
+
shortName: 'hanchain',
|
|
47671
|
+
chainId: 726578,
|
|
47672
|
+
networkId: 726578,
|
|
47673
|
+
explorers: [
|
|
47674
|
+
{
|
|
47675
|
+
name: 'HanChain Explorer',
|
|
47676
|
+
url: 'https://rpc.hanchain.cc',
|
|
47677
|
+
standard: 'EIP3091'
|
|
47678
|
+
}
|
|
47679
|
+
]
|
|
47680
|
+
},
|
|
47514
47681
|
{
|
|
47515
47682
|
name: 'bokuto',
|
|
47516
47683
|
chain: 'bokuto',
|
|
@@ -52531,6 +52698,21 @@ const chainArray = [
|
|
|
52531
52698
|
],
|
|
52532
52699
|
parent: { type: 'L2', chain: 'eip155-11155111' }
|
|
52533
52700
|
},
|
|
52701
|
+
{
|
|
52702
|
+
name: 'Recyclefarm Carbon Network Sepolia',
|
|
52703
|
+
chain: 'ETH',
|
|
52704
|
+
rpc: [],
|
|
52705
|
+
faucets: [],
|
|
52706
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
52707
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
52708
|
+
infoURL: 'https://recyclefarm.org/',
|
|
52709
|
+
shortName: 'recasep',
|
|
52710
|
+
chainId: 82696765,
|
|
52711
|
+
networkId: 82696765,
|
|
52712
|
+
slip44: 1,
|
|
52713
|
+
explorers: [],
|
|
52714
|
+
parent: { type: 'L2', chain: 'eip155-11155111' }
|
|
52715
|
+
},
|
|
52534
52716
|
{
|
|
52535
52717
|
name: 'Backstop Testnet',
|
|
52536
52718
|
chain: 'backstopTestnet',
|
|
@@ -54704,6 +54886,25 @@ const chainArray = [
|
|
|
54704
54886
|
}
|
|
54705
54887
|
]
|
|
54706
54888
|
},
|
|
54889
|
+
{
|
|
54890
|
+
name: 'GUT Network',
|
|
54891
|
+
chain: 'GUT',
|
|
54892
|
+
rpc: [ 'https://rpc.gut.network' ],
|
|
54893
|
+
faucets: [],
|
|
54894
|
+
nativeCurrency: { name: 'GUT', symbol: 'GUT', decimals: 18 },
|
|
54895
|
+
infoURL: 'https://gut.network',
|
|
54896
|
+
shortName: 'gut',
|
|
54897
|
+
chainId: 3078101055,
|
|
54898
|
+
networkId: 3078101055,
|
|
54899
|
+
icon: 'gut',
|
|
54900
|
+
explorers: [
|
|
54901
|
+
{
|
|
54902
|
+
name: 'GUT Explorer',
|
|
54903
|
+
url: 'https://explorer.gut.network',
|
|
54904
|
+
standard: 'none'
|
|
54905
|
+
}
|
|
54906
|
+
]
|
|
54907
|
+
},
|
|
54707
54908
|
{
|
|
54708
54909
|
name: 'Pirl',
|
|
54709
54910
|
chain: 'PIRL',
|