eth-chainlist 0.0.743 → 0.0.745
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 +147 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.745 (2026-03-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.744 ([97fa551](https://github.com/poowf/eth-chainlist/commit/97fa5514727ece0450f64dfce0f39a3934aed5cd))
|
|
9
|
+
* update chain data ([3798ab1](https://github.com/poowf/eth-chainlist/commit/3798ab182bf47b15cc207265e6b835b4c09f9bcb))
|
|
10
|
+
|
|
11
|
+
### 0.0.744 (2026-03-27)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.743 ([46bd215](https://github.com/poowf/eth-chainlist/commit/46bd215557cc35fe6b60566969035d7ebd5a34f6))
|
|
17
|
+
* update chain data ([608f89e](https://github.com/poowf/eth-chainlist/commit/608f89ed8b09a47ae1b1eedd2b72da73ef3c717a))
|
|
18
|
+
|
|
3
19
|
### 0.0.743 (2026-03-26)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -16590,6 +16590,7 @@ const chainArray = [
|
|
|
16590
16590
|
chain: 'Bitcoin EVM',
|
|
16591
16591
|
rpc: [ 'https://connect.bitcoinevm.com' ],
|
|
16592
16592
|
faucets: [],
|
|
16593
|
+
features: [ { name: 'EIP155' } ],
|
|
16593
16594
|
nativeCurrency: { name: 'Bitcoin', symbol: 'BTC', decimals: 18 },
|
|
16594
16595
|
infoURL: 'https://bitcoinevm.com',
|
|
16595
16596
|
shortName: 'BTC',
|
|
@@ -16598,12 +16599,13 @@ const chainArray = [
|
|
|
16598
16599
|
icon: 'ebtc',
|
|
16599
16600
|
explorers: [
|
|
16600
16601
|
{
|
|
16601
|
-
name: 'Explorer',
|
|
16602
|
+
name: 'Bitcoin EVM Explorer',
|
|
16602
16603
|
url: 'https://explorer.bitcoinevm.com',
|
|
16603
16604
|
icon: 'ebtc',
|
|
16604
|
-
standard: '
|
|
16605
|
+
standard: 'EIP3091'
|
|
16605
16606
|
}
|
|
16606
|
-
]
|
|
16607
|
+
],
|
|
16608
|
+
status: 'active'
|
|
16607
16609
|
},
|
|
16608
16610
|
{
|
|
16609
16611
|
name: 'Evanesco Mainnet',
|
|
@@ -23214,6 +23216,48 @@ const chainArray = [
|
|
|
23214
23216
|
}
|
|
23215
23217
|
]
|
|
23216
23218
|
},
|
|
23219
|
+
{
|
|
23220
|
+
name: 'Monolythium Testnet',
|
|
23221
|
+
chain: 'LYTH',
|
|
23222
|
+
rpc: [ 'https://evm.testnet.mononodes.xyz' ],
|
|
23223
|
+
faucets: [],
|
|
23224
|
+
nativeCurrency: { name: 'Lythium', symbol: 'LYTH', decimals: 18 },
|
|
23225
|
+
infoURL: 'https://monolythium.com',
|
|
23226
|
+
shortName: 'lyth-testnet',
|
|
23227
|
+
chainId: 6940,
|
|
23228
|
+
networkId: 6940,
|
|
23229
|
+
slip44: 1,
|
|
23230
|
+
icon: 'monolythium',
|
|
23231
|
+
features: [ { name: 'EIP155' } ],
|
|
23232
|
+
explorers: [
|
|
23233
|
+
{
|
|
23234
|
+
name: 'Monoscan',
|
|
23235
|
+
url: 'https://testnet.monoscan.xyz',
|
|
23236
|
+
standard: 'EIP3091'
|
|
23237
|
+
}
|
|
23238
|
+
]
|
|
23239
|
+
},
|
|
23240
|
+
{
|
|
23241
|
+
name: 'Monolythium',
|
|
23242
|
+
chain: 'LYTH',
|
|
23243
|
+
rpc: [ 'https://evm.mainnet.mononodes.xyz' ],
|
|
23244
|
+
faucets: [],
|
|
23245
|
+
nativeCurrency: { name: 'Lythium', symbol: 'LYTH', decimals: 18 },
|
|
23246
|
+
infoURL: 'https://monolythium.com',
|
|
23247
|
+
shortName: 'lyth',
|
|
23248
|
+
chainId: 6941,
|
|
23249
|
+
networkId: 6941,
|
|
23250
|
+
slip44: 60,
|
|
23251
|
+
icon: 'monolythium',
|
|
23252
|
+
features: [ { name: 'EIP155' } ],
|
|
23253
|
+
explorers: [
|
|
23254
|
+
{
|
|
23255
|
+
name: 'Monoscan',
|
|
23256
|
+
url: 'https://monoscan.xyz',
|
|
23257
|
+
standard: 'EIP3091'
|
|
23258
|
+
}
|
|
23259
|
+
]
|
|
23260
|
+
},
|
|
23217
23261
|
{
|
|
23218
23262
|
name: 'Laika Mainnet',
|
|
23219
23263
|
chain: 'LAIKA',
|
|
@@ -26548,6 +26592,27 @@ const chainArray = [
|
|
|
26548
26592
|
}
|
|
26549
26593
|
]
|
|
26550
26594
|
},
|
|
26595
|
+
{
|
|
26596
|
+
name: 'Colossus Sepolia Testnet',
|
|
26597
|
+
chain: 'ETH',
|
|
26598
|
+
rpc: [ 'https://rpc.testnet.colossus.credit' ],
|
|
26599
|
+
faucets: [],
|
|
26600
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
26601
|
+
icon: 'colossus',
|
|
26602
|
+
infoURL: 'https://www.colossus.credit/',
|
|
26603
|
+
shortName: 'colsep',
|
|
26604
|
+
chainId: 9511,
|
|
26605
|
+
networkId: 9511,
|
|
26606
|
+
slip44: 1,
|
|
26607
|
+
explorers: [
|
|
26608
|
+
{
|
|
26609
|
+
name: 'colossus-scout',
|
|
26610
|
+
url: 'https://explorer.testnet.colossus.credit',
|
|
26611
|
+
icon: 'blockscout',
|
|
26612
|
+
standard: 'EIP3091'
|
|
26613
|
+
}
|
|
26614
|
+
]
|
|
26615
|
+
},
|
|
26551
26616
|
{
|
|
26552
26617
|
name: 'Rangers Protocol Testnet Robin',
|
|
26553
26618
|
chain: 'Rangers',
|
|
@@ -31076,6 +31141,27 @@ const chainArray = [
|
|
|
31076
31141
|
}
|
|
31077
31142
|
]
|
|
31078
31143
|
},
|
|
31144
|
+
{
|
|
31145
|
+
name: 'Access Network',
|
|
31146
|
+
chain: 'ACCESS',
|
|
31147
|
+
icon: 'access',
|
|
31148
|
+
chainId: 22888,
|
|
31149
|
+
shortName: 'access',
|
|
31150
|
+
networkId: 22888,
|
|
31151
|
+
nativeCurrency: { name: 'Access Coin', symbol: 'ACCESS', decimals: 18 },
|
|
31152
|
+
rpc: [ 'https://accesschain.org/rpc' ],
|
|
31153
|
+
faucets: [],
|
|
31154
|
+
infoURL: 'https://accesschain.org',
|
|
31155
|
+
explorers: [
|
|
31156
|
+
{
|
|
31157
|
+
name: 'Access Network Explorer',
|
|
31158
|
+
url: 'https://accesschain.org/explorer',
|
|
31159
|
+
standard: 'EIP3091',
|
|
31160
|
+
icon: 'access'
|
|
31161
|
+
}
|
|
31162
|
+
],
|
|
31163
|
+
status: 'active'
|
|
31164
|
+
},
|
|
31079
31165
|
{
|
|
31080
31166
|
name: 'Antofy Testnet',
|
|
31081
31167
|
chain: 'ABN',
|
|
@@ -31391,6 +31477,27 @@ const chainArray = [
|
|
|
31391
31477
|
}
|
|
31392
31478
|
]
|
|
31393
31479
|
},
|
|
31480
|
+
{
|
|
31481
|
+
name: 'Fluent',
|
|
31482
|
+
chain: 'FLUENT',
|
|
31483
|
+
icon: 'fluent',
|
|
31484
|
+
rpc: [ 'https://rpc.fluent.xyz' ],
|
|
31485
|
+
faucets: [],
|
|
31486
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
31487
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
31488
|
+
infoURL: 'https://www.fluent.xyz/',
|
|
31489
|
+
shortName: 'fluent',
|
|
31490
|
+
chainId: 25363,
|
|
31491
|
+
networkId: 25363,
|
|
31492
|
+
explorers: [
|
|
31493
|
+
{
|
|
31494
|
+
name: 'Fluent Explorer',
|
|
31495
|
+
url: 'https://fluentscan.xyz',
|
|
31496
|
+
standard: 'EIP3091'
|
|
31497
|
+
}
|
|
31498
|
+
],
|
|
31499
|
+
parent: { type: 'L2', chain: 'eip155-1' }
|
|
31500
|
+
},
|
|
31394
31501
|
{
|
|
31395
31502
|
name: 'H2 Chain Testnet Lambda',
|
|
31396
31503
|
chain: 'H2',
|
|
@@ -37362,6 +37469,24 @@ const chainArray = [
|
|
|
37362
37469
|
}
|
|
37363
37470
|
]
|
|
37364
37471
|
},
|
|
37472
|
+
{
|
|
37473
|
+
name: 'StreetDog Chain',
|
|
37474
|
+
chain: 'SDC',
|
|
37475
|
+
rpc: [ 'https://rpc.chain.streetdog.me' ],
|
|
37476
|
+
faucets: [],
|
|
37477
|
+
nativeCurrency: { name: 'StreetDog', symbol: 'SD', decimals: 18 },
|
|
37478
|
+
infoURL: 'https://chain.streetdog.me',
|
|
37479
|
+
shortName: 'sdc',
|
|
37480
|
+
chainId: 77778,
|
|
37481
|
+
networkId: 77778,
|
|
37482
|
+
explorers: [
|
|
37483
|
+
{
|
|
37484
|
+
name: 'StreetDog Chain Explorer',
|
|
37485
|
+
url: 'https://chain.streetdog.me',
|
|
37486
|
+
standard: 'none'
|
|
37487
|
+
}
|
|
37488
|
+
]
|
|
37489
|
+
},
|
|
37365
37490
|
{
|
|
37366
37491
|
name: 'Firenze test network',
|
|
37367
37492
|
chain: 'ETH',
|
|
@@ -48705,6 +48830,25 @@ const chainArray = [
|
|
|
48705
48830
|
}
|
|
48706
48831
|
]
|
|
48707
48832
|
},
|
|
48833
|
+
{
|
|
48834
|
+
name: 'Meta Assets Chain',
|
|
48835
|
+
chain: 'MA',
|
|
48836
|
+
icon: 'metaassets',
|
|
48837
|
+
rpc: [ 'https://rpc.ma-chain.xyz' ],
|
|
48838
|
+
faucets: [],
|
|
48839
|
+
nativeCurrency: { name: 'MetaAssets', symbol: 'MA', decimals: 18 },
|
|
48840
|
+
infoURL: 'https://ma-chain.xyz',
|
|
48841
|
+
shortName: 'ma',
|
|
48842
|
+
chainId: 20260131,
|
|
48843
|
+
networkId: 20260131,
|
|
48844
|
+
explorers: [
|
|
48845
|
+
{
|
|
48846
|
+
name: 'Meta Assets Chain Explorer',
|
|
48847
|
+
url: 'https://ma-chain.xyz',
|
|
48848
|
+
standard: 'EIP3091'
|
|
48849
|
+
}
|
|
48850
|
+
]
|
|
48851
|
+
},
|
|
48708
48852
|
{
|
|
48709
48853
|
name: 'Hokum Testnet',
|
|
48710
48854
|
chain: 'HokumTestnet',
|