eth-chainlist 0.0.768 → 0.0.769
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 +8 -0
- package/data/chain.js +115 -13
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.769 (2026-05-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.768 ([4cb38b6](https://github.com/poowf/eth-chainlist/commit/4cb38b6cd7ebe1f8b08c6d9007145d832316b44d))
|
|
9
|
+
* update chain data ([65c725f](https://github.com/poowf/eth-chainlist/commit/65c725ff3b852116ea6116624f47c2490f7cfefd))
|
|
10
|
+
|
|
3
11
|
### 0.0.768 (2026-05-12)
|
|
4
12
|
|
|
5
13
|
|
package/data/chain.js
CHANGED
|
@@ -12888,7 +12888,7 @@ const chainArray = [
|
|
|
12888
12888
|
chain: 'Atlantis',
|
|
12889
12889
|
rpc: [ 'https://rpc.atlantischain.network' ],
|
|
12890
12890
|
faucets: [ 'https://faucet.atlantischain.network' ],
|
|
12891
|
-
nativeCurrency: { name: '
|
|
12891
|
+
nativeCurrency: { name: 'PYR', symbol: 'PYR', decimals: 18 },
|
|
12892
12892
|
infoURL: 'https://elysiumchain.tech',
|
|
12893
12893
|
shortName: 'ATL',
|
|
12894
12894
|
chainId: 1338,
|
|
@@ -20875,15 +20875,37 @@ const chainArray = [
|
|
|
20875
20875
|
},
|
|
20876
20876
|
{
|
|
20877
20877
|
name: 'MegaETH Mainnet',
|
|
20878
|
-
chain: '
|
|
20879
|
-
|
|
20880
|
-
|
|
20878
|
+
chain: 'MegaETH',
|
|
20879
|
+
rpc: [
|
|
20880
|
+
'https://mainnet.megaeth.com/rpc',
|
|
20881
|
+
'wss://mainnet.megaeth.com/ws'
|
|
20882
|
+
],
|
|
20881
20883
|
faucets: [],
|
|
20882
|
-
|
|
20884
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
20883
20885
|
infoURL: 'https://megaeth.com',
|
|
20884
20886
|
shortName: 'megaeth',
|
|
20885
20887
|
chainId: 4326,
|
|
20886
|
-
networkId: 4326
|
|
20888
|
+
networkId: 4326,
|
|
20889
|
+
icon: 'megaeth',
|
|
20890
|
+
explorers: [
|
|
20891
|
+
{
|
|
20892
|
+
name: 'MegaETH Etherscan',
|
|
20893
|
+
url: 'https://mega.etherscan.io',
|
|
20894
|
+
standard: 'EIP3091'
|
|
20895
|
+
},
|
|
20896
|
+
{
|
|
20897
|
+
name: 'MegaETH Blockscout',
|
|
20898
|
+
url: 'https://megaeth.blockscout.com',
|
|
20899
|
+
icon: 'blockscout',
|
|
20900
|
+
standard: 'EIP3091'
|
|
20901
|
+
}
|
|
20902
|
+
],
|
|
20903
|
+
parent: {
|
|
20904
|
+
type: 'L2',
|
|
20905
|
+
chain: 'eip155-1',
|
|
20906
|
+
bridges: [ { url: 'https://rabbithole.megaeth.com' } ]
|
|
20907
|
+
},
|
|
20908
|
+
status: 'active'
|
|
20887
20909
|
},
|
|
20888
20910
|
{
|
|
20889
20911
|
name: 'Bobafuji Testnet',
|
|
@@ -23224,15 +23246,24 @@ const chainArray = [
|
|
|
23224
23246
|
},
|
|
23225
23247
|
{
|
|
23226
23248
|
name: 'MegaETH Testnet',
|
|
23227
|
-
chain: '
|
|
23228
|
-
|
|
23229
|
-
|
|
23230
|
-
|
|
23231
|
-
infoURL: 'https://
|
|
23232
|
-
shortName: '
|
|
23249
|
+
chain: 'MegaETH',
|
|
23250
|
+
rpc: [ 'https://carrot.megaeth.com/rpc' ],
|
|
23251
|
+
faucets: [ 'https://testnet.megaeth.com' ],
|
|
23252
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
23253
|
+
infoURL: 'https://megaeth.com',
|
|
23254
|
+
shortName: 'megaeth-testnet',
|
|
23233
23255
|
chainId: 6343,
|
|
23234
23256
|
networkId: 6343,
|
|
23235
|
-
|
|
23257
|
+
icon: 'megaeth',
|
|
23258
|
+
explorers: [
|
|
23259
|
+
{
|
|
23260
|
+
name: 'MegaETH Testnet Explorer',
|
|
23261
|
+
url: 'https://testnet-mega.etherscan.io',
|
|
23262
|
+
standard: 'EIP3091'
|
|
23263
|
+
}
|
|
23264
|
+
],
|
|
23265
|
+
parent: { type: 'L2', chain: 'eip155-11155111' },
|
|
23266
|
+
status: 'active'
|
|
23236
23267
|
},
|
|
23237
23268
|
{
|
|
23238
23269
|
name: 'Digit Soul Smart Chain',
|
|
@@ -23265,6 +23296,25 @@ const chainArray = [
|
|
|
23265
23296
|
}
|
|
23266
23297
|
]
|
|
23267
23298
|
},
|
|
23299
|
+
{
|
|
23300
|
+
name: 'MIZUHIKI Testnet Awaji',
|
|
23301
|
+
chain: 'MIZU',
|
|
23302
|
+
rpc: [ 'https://rpc.awaji.mizuhiki.io' ],
|
|
23303
|
+
faucets: [ 'https://faucet.awaji.mizuhiki.io' ],
|
|
23304
|
+
nativeCurrency: { name: 'MIZU', symbol: 'MIZU', decimals: 18 },
|
|
23305
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
23306
|
+
infoURL: 'https://mizuhiki.io/',
|
|
23307
|
+
shortName: 'awaji',
|
|
23308
|
+
chainId: 6497,
|
|
23309
|
+
networkId: 6497,
|
|
23310
|
+
explorers: [
|
|
23311
|
+
{
|
|
23312
|
+
name: 'blockscout',
|
|
23313
|
+
url: 'https://awaji.blockscout.com',
|
|
23314
|
+
standard: 'EIP3091'
|
|
23315
|
+
}
|
|
23316
|
+
]
|
|
23317
|
+
},
|
|
23268
23318
|
{
|
|
23269
23319
|
name: 'Peerpay',
|
|
23270
23320
|
chain: 'P2P',
|
|
@@ -24071,6 +24121,44 @@ const chainArray = [
|
|
|
24071
24121
|
status: 'incubating',
|
|
24072
24122
|
explorers: []
|
|
24073
24123
|
},
|
|
24124
|
+
{
|
|
24125
|
+
name: 'Sentrix Chain',
|
|
24126
|
+
chain: 'Sentrix',
|
|
24127
|
+
rpc: [ 'https://rpc.sentrixchain.com' ],
|
|
24128
|
+
faucets: [],
|
|
24129
|
+
nativeCurrency: { name: 'Sentrix', symbol: 'SRX', decimals: 18 },
|
|
24130
|
+
infoURL: 'https://sentrixchain.com',
|
|
24131
|
+
shortName: 'srx',
|
|
24132
|
+
chainId: 7119,
|
|
24133
|
+
networkId: 7119,
|
|
24134
|
+
icon: 'sentrix',
|
|
24135
|
+
explorers: [
|
|
24136
|
+
{
|
|
24137
|
+
name: 'Sentrix Scan',
|
|
24138
|
+
url: 'https://scan.sentrixchain.com',
|
|
24139
|
+
standard: 'EIP3091'
|
|
24140
|
+
}
|
|
24141
|
+
]
|
|
24142
|
+
},
|
|
24143
|
+
{
|
|
24144
|
+
name: 'Sentrix Testnet',
|
|
24145
|
+
chain: 'Sentrix',
|
|
24146
|
+
rpc: [ 'https://testnet-rpc.sentrixchain.com' ],
|
|
24147
|
+
faucets: [ 'https://faucet.sentrixchain.com' ],
|
|
24148
|
+
nativeCurrency: { name: 'Sentrix', symbol: 'SRX', decimals: 18 },
|
|
24149
|
+
infoURL: 'https://sentrixchain.com',
|
|
24150
|
+
shortName: 'srx-testnet',
|
|
24151
|
+
chainId: 7120,
|
|
24152
|
+
networkId: 7120,
|
|
24153
|
+
icon: 'sentrix',
|
|
24154
|
+
explorers: [
|
|
24155
|
+
{
|
|
24156
|
+
name: 'Sentrix Scan Testnet',
|
|
24157
|
+
url: 'https://scan-testnet.sentrixchain.com',
|
|
24158
|
+
standard: 'EIP3091'
|
|
24159
|
+
}
|
|
24160
|
+
]
|
|
24161
|
+
},
|
|
24074
24162
|
{
|
|
24075
24163
|
name: 'Bitrock Mainnet',
|
|
24076
24164
|
chain: 'Bitrock',
|
|
@@ -26123,6 +26211,20 @@ const chainArray = [
|
|
|
26123
26211
|
}
|
|
26124
26212
|
]
|
|
26125
26213
|
},
|
|
26214
|
+
{
|
|
26215
|
+
name: 'EB-Chain',
|
|
26216
|
+
chain: 'EBC',
|
|
26217
|
+
rpc: [ 'https://rpc.ebcscan.net' ],
|
|
26218
|
+
faucets: [ 'https://ebcscan.net/faucet' ],
|
|
26219
|
+
nativeCurrency: { name: 'EBC', symbol: 'EBC', decimals: 18 },
|
|
26220
|
+
infoURL: 'https://ebcscan.net',
|
|
26221
|
+
shortName: 'ebc',
|
|
26222
|
+
chainId: 8721,
|
|
26223
|
+
networkId: 8721,
|
|
26224
|
+
explorers: [
|
|
26225
|
+
{ name: 'EBCScan', url: 'https://ebcscan.net', standard: 'none' }
|
|
26226
|
+
]
|
|
26227
|
+
},
|
|
26126
26228
|
{
|
|
26127
26229
|
name: 'TOOL Global Mainnet',
|
|
26128
26230
|
chain: 'OLO',
|