eth-chainlist 0.0.744 → 0.0.746
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 +200 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.746 (2026-03-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.745 ([f5d7200](https://github.com/poowf/eth-chainlist/commit/f5d72000adfc6adf527df1db809884c606d786b5))
|
|
9
|
+
* update chain data ([53cee66](https://github.com/poowf/eth-chainlist/commit/53cee66b12c69e9c4e5bec0c15441df98035fe29))
|
|
10
|
+
|
|
11
|
+
### 0.0.745 (2026-03-28)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.744 ([97fa551](https://github.com/poowf/eth-chainlist/commit/97fa5514727ece0450f64dfce0f39a3934aed5cd))
|
|
17
|
+
* update chain data ([3798ab1](https://github.com/poowf/eth-chainlist/commit/3798ab182bf47b15cc207265e6b835b4c09f9bcb))
|
|
18
|
+
|
|
3
19
|
### 0.0.744 (2026-03-27)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -7988,6 +7988,50 @@ const chainArray = [
|
|
|
7988
7988
|
}
|
|
7989
7989
|
]
|
|
7990
7990
|
},
|
|
7991
|
+
{
|
|
7992
|
+
name: 'BattleChain Mainnet',
|
|
7993
|
+
chain: 'ETH',
|
|
7994
|
+
rpc: [],
|
|
7995
|
+
faucets: [],
|
|
7996
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
7997
|
+
infoURL: 'https://battlechain.com',
|
|
7998
|
+
shortName: 'battlechain',
|
|
7999
|
+
chainId: 626,
|
|
8000
|
+
networkId: 626,
|
|
8001
|
+
icon: 'battlechain',
|
|
8002
|
+
status: 'incubating',
|
|
8003
|
+
explorers: [],
|
|
8004
|
+
parent: {
|
|
8005
|
+
type: 'L2',
|
|
8006
|
+
chain: 'eip155-1',
|
|
8007
|
+
bridges: [ { url: 'https://portal.battlechain.com/bridge' } ]
|
|
8008
|
+
}
|
|
8009
|
+
},
|
|
8010
|
+
{
|
|
8011
|
+
name: 'BattleChain Testnet',
|
|
8012
|
+
chain: 'ETH',
|
|
8013
|
+
rpc: [ 'https://testnet.battlechain.com' ],
|
|
8014
|
+
faucets: [],
|
|
8015
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
8016
|
+
infoURL: 'https://battlechain.com',
|
|
8017
|
+
shortName: 'battlechain-testnet',
|
|
8018
|
+
chainId: 627,
|
|
8019
|
+
networkId: 627,
|
|
8020
|
+
slip44: 1,
|
|
8021
|
+
icon: 'battlechain',
|
|
8022
|
+
explorers: [
|
|
8023
|
+
{
|
|
8024
|
+
name: 'BattleChain Explorer',
|
|
8025
|
+
url: 'https://explorer.testnet.battlechain.com',
|
|
8026
|
+
standard: 'EIP3091'
|
|
8027
|
+
}
|
|
8028
|
+
],
|
|
8029
|
+
parent: {
|
|
8030
|
+
type: 'L2',
|
|
8031
|
+
chain: 'eip155-11155111',
|
|
8032
|
+
bridges: [ { url: 'https://portal.battlechain.com/bridge' } ]
|
|
8033
|
+
}
|
|
8034
|
+
},
|
|
7991
8035
|
{
|
|
7992
8036
|
name: 'NFB Chain',
|
|
7993
8037
|
chain: 'NFB Chain',
|
|
@@ -22690,6 +22734,19 @@ const chainArray = [
|
|
|
22690
22734
|
}
|
|
22691
22735
|
]
|
|
22692
22736
|
},
|
|
22737
|
+
{
|
|
22738
|
+
name: 'MegaETH Testnet (Deprecated)',
|
|
22739
|
+
chain: 'ETH',
|
|
22740
|
+
nativeCurrency: { name: 'MegaETH Testnet Ether', symbol: 'ETH', decimals: 18 },
|
|
22741
|
+
rpc: [],
|
|
22742
|
+
faucets: [],
|
|
22743
|
+
infoURL: 'https://testnet.megaeth.com',
|
|
22744
|
+
shortName: 'megatest-deprecated',
|
|
22745
|
+
chainId: 6342,
|
|
22746
|
+
networkId: 6342,
|
|
22747
|
+
slip44: 1,
|
|
22748
|
+
status: 'deprecated'
|
|
22749
|
+
},
|
|
22693
22750
|
{
|
|
22694
22751
|
name: 'MegaETH Testnet',
|
|
22695
22752
|
chain: 'ETH',
|
|
@@ -22698,8 +22755,8 @@ const chainArray = [
|
|
|
22698
22755
|
faucets: [],
|
|
22699
22756
|
infoURL: 'https://testnet.megaeth.com',
|
|
22700
22757
|
shortName: 'megatest',
|
|
22701
|
-
chainId:
|
|
22702
|
-
networkId:
|
|
22758
|
+
chainId: 6343,
|
|
22759
|
+
networkId: 6343,
|
|
22703
22760
|
slip44: 1
|
|
22704
22761
|
},
|
|
22705
22762
|
{
|
|
@@ -23216,6 +23273,48 @@ const chainArray = [
|
|
|
23216
23273
|
}
|
|
23217
23274
|
]
|
|
23218
23275
|
},
|
|
23276
|
+
{
|
|
23277
|
+
name: 'Monolythium Testnet',
|
|
23278
|
+
chain: 'LYTH',
|
|
23279
|
+
rpc: [ 'https://evm.testnet.mononodes.xyz' ],
|
|
23280
|
+
faucets: [],
|
|
23281
|
+
nativeCurrency: { name: 'Lythium', symbol: 'LYTH', decimals: 18 },
|
|
23282
|
+
infoURL: 'https://monolythium.com',
|
|
23283
|
+
shortName: 'lyth-testnet',
|
|
23284
|
+
chainId: 6940,
|
|
23285
|
+
networkId: 6940,
|
|
23286
|
+
slip44: 1,
|
|
23287
|
+
icon: 'monolythium',
|
|
23288
|
+
features: [ { name: 'EIP155' } ],
|
|
23289
|
+
explorers: [
|
|
23290
|
+
{
|
|
23291
|
+
name: 'Monoscan',
|
|
23292
|
+
url: 'https://testnet.monoscan.xyz',
|
|
23293
|
+
standard: 'EIP3091'
|
|
23294
|
+
}
|
|
23295
|
+
]
|
|
23296
|
+
},
|
|
23297
|
+
{
|
|
23298
|
+
name: 'Monolythium',
|
|
23299
|
+
chain: 'LYTH',
|
|
23300
|
+
rpc: [ 'https://evm.mainnet.mononodes.xyz' ],
|
|
23301
|
+
faucets: [],
|
|
23302
|
+
nativeCurrency: { name: 'Lythium', symbol: 'LYTH', decimals: 18 },
|
|
23303
|
+
infoURL: 'https://monolythium.com',
|
|
23304
|
+
shortName: 'lyth',
|
|
23305
|
+
chainId: 6941,
|
|
23306
|
+
networkId: 6941,
|
|
23307
|
+
slip44: 60,
|
|
23308
|
+
icon: 'monolythium',
|
|
23309
|
+
features: [ { name: 'EIP155' } ],
|
|
23310
|
+
explorers: [
|
|
23311
|
+
{
|
|
23312
|
+
name: 'Monoscan',
|
|
23313
|
+
url: 'https://monoscan.xyz',
|
|
23314
|
+
standard: 'EIP3091'
|
|
23315
|
+
}
|
|
23316
|
+
]
|
|
23317
|
+
},
|
|
23219
23318
|
{
|
|
23220
23319
|
name: 'Laika Mainnet',
|
|
23221
23320
|
chain: 'LAIKA',
|
|
@@ -26550,6 +26649,27 @@ const chainArray = [
|
|
|
26550
26649
|
}
|
|
26551
26650
|
]
|
|
26552
26651
|
},
|
|
26652
|
+
{
|
|
26653
|
+
name: 'Colossus Sepolia Testnet',
|
|
26654
|
+
chain: 'ETH',
|
|
26655
|
+
rpc: [ 'https://rpc.testnet.colossus.credit' ],
|
|
26656
|
+
faucets: [],
|
|
26657
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
26658
|
+
icon: 'colossus',
|
|
26659
|
+
infoURL: 'https://www.colossus.credit/',
|
|
26660
|
+
shortName: 'colsep',
|
|
26661
|
+
chainId: 9511,
|
|
26662
|
+
networkId: 9511,
|
|
26663
|
+
slip44: 1,
|
|
26664
|
+
explorers: [
|
|
26665
|
+
{
|
|
26666
|
+
name: 'colossus-scout',
|
|
26667
|
+
url: 'https://explorer.testnet.colossus.credit',
|
|
26668
|
+
icon: 'blockscout',
|
|
26669
|
+
standard: 'EIP3091'
|
|
26670
|
+
}
|
|
26671
|
+
]
|
|
26672
|
+
},
|
|
26553
26673
|
{
|
|
26554
26674
|
name: 'Rangers Protocol Testnet Robin',
|
|
26555
26675
|
chain: 'Rangers',
|
|
@@ -31078,6 +31198,27 @@ const chainArray = [
|
|
|
31078
31198
|
}
|
|
31079
31199
|
]
|
|
31080
31200
|
},
|
|
31201
|
+
{
|
|
31202
|
+
name: 'Access Network',
|
|
31203
|
+
chain: 'ACCESS',
|
|
31204
|
+
icon: 'access',
|
|
31205
|
+
chainId: 22888,
|
|
31206
|
+
shortName: 'access',
|
|
31207
|
+
networkId: 22888,
|
|
31208
|
+
nativeCurrency: { name: 'Access Coin', symbol: 'ACCESS', decimals: 18 },
|
|
31209
|
+
rpc: [ 'https://accesschain.org/rpc' ],
|
|
31210
|
+
faucets: [],
|
|
31211
|
+
infoURL: 'https://accesschain.org',
|
|
31212
|
+
explorers: [
|
|
31213
|
+
{
|
|
31214
|
+
name: 'Access Network Explorer',
|
|
31215
|
+
url: 'https://accesschain.org/explorer',
|
|
31216
|
+
standard: 'EIP3091',
|
|
31217
|
+
icon: 'access'
|
|
31218
|
+
}
|
|
31219
|
+
],
|
|
31220
|
+
status: 'active'
|
|
31221
|
+
},
|
|
31081
31222
|
{
|
|
31082
31223
|
name: 'Antofy Testnet',
|
|
31083
31224
|
chain: 'ABN',
|
|
@@ -31393,6 +31534,27 @@ const chainArray = [
|
|
|
31393
31534
|
}
|
|
31394
31535
|
]
|
|
31395
31536
|
},
|
|
31537
|
+
{
|
|
31538
|
+
name: 'Fluent',
|
|
31539
|
+
chain: 'FLUENT',
|
|
31540
|
+
icon: 'fluent',
|
|
31541
|
+
rpc: [ 'https://rpc.fluent.xyz' ],
|
|
31542
|
+
faucets: [],
|
|
31543
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
31544
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
31545
|
+
infoURL: 'https://www.fluent.xyz/',
|
|
31546
|
+
shortName: 'fluent',
|
|
31547
|
+
chainId: 25363,
|
|
31548
|
+
networkId: 25363,
|
|
31549
|
+
explorers: [
|
|
31550
|
+
{
|
|
31551
|
+
name: 'Fluent Explorer',
|
|
31552
|
+
url: 'https://fluentscan.xyz',
|
|
31553
|
+
standard: 'EIP3091'
|
|
31554
|
+
}
|
|
31555
|
+
],
|
|
31556
|
+
parent: { type: 'L2', chain: 'eip155-1' }
|
|
31557
|
+
},
|
|
31396
31558
|
{
|
|
31397
31559
|
name: 'H2 Chain Testnet Lambda',
|
|
31398
31560
|
chain: 'H2',
|
|
@@ -37143,6 +37305,24 @@ const chainArray = [
|
|
|
37143
37305
|
}
|
|
37144
37306
|
]
|
|
37145
37307
|
},
|
|
37308
|
+
{
|
|
37309
|
+
name: 'NV-CHAIN',
|
|
37310
|
+
chain: 'NVC',
|
|
37311
|
+
rpc: [ 'https://rpc.neurovatic.ai/rpc' ],
|
|
37312
|
+
faucets: [ 'https://faucet.neurovatic.ai' ],
|
|
37313
|
+
nativeCurrency: { name: 'NeuroVatic Coin', symbol: 'NVC', decimals: 18 },
|
|
37314
|
+
infoURL: 'https://neurovatic.ai',
|
|
37315
|
+
shortName: 'nvc',
|
|
37316
|
+
chainId: 73790,
|
|
37317
|
+
networkId: 73790,
|
|
37318
|
+
explorers: [
|
|
37319
|
+
{
|
|
37320
|
+
name: 'nvScan',
|
|
37321
|
+
url: 'https://explorer.neurovatic.ai',
|
|
37322
|
+
standard: 'EIP3091'
|
|
37323
|
+
}
|
|
37324
|
+
]
|
|
37325
|
+
},
|
|
37146
37326
|
{
|
|
37147
37327
|
name: 'Energy Web Volta Testnet',
|
|
37148
37328
|
chain: 'Volta',
|
|
@@ -37364,6 +37544,24 @@ const chainArray = [
|
|
|
37364
37544
|
}
|
|
37365
37545
|
]
|
|
37366
37546
|
},
|
|
37547
|
+
{
|
|
37548
|
+
name: 'StreetDog Chain',
|
|
37549
|
+
chain: 'SDC',
|
|
37550
|
+
rpc: [ 'https://rpc.chain.streetdog.me' ],
|
|
37551
|
+
faucets: [],
|
|
37552
|
+
nativeCurrency: { name: 'StreetDog', symbol: 'SD', decimals: 18 },
|
|
37553
|
+
infoURL: 'https://chain.streetdog.me',
|
|
37554
|
+
shortName: 'sdc',
|
|
37555
|
+
chainId: 77778,
|
|
37556
|
+
networkId: 77778,
|
|
37557
|
+
explorers: [
|
|
37558
|
+
{
|
|
37559
|
+
name: 'StreetDog Chain Explorer',
|
|
37560
|
+
url: 'https://chain.streetdog.me',
|
|
37561
|
+
standard: 'none'
|
|
37562
|
+
}
|
|
37563
|
+
]
|
|
37564
|
+
},
|
|
37367
37565
|
{
|
|
37368
37566
|
name: 'Firenze test network',
|
|
37369
37567
|
chain: 'ETH',
|