eth-chainlist 0.0.768 → 0.0.770
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 -24
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.770 (2026-05-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.769 ([5eaa457](https://github.com/poowf/eth-chainlist/commit/5eaa457e86e209f268369a994a25b393ea315f35))
|
|
9
|
+
* update chain data ([6d6ab7b](https://github.com/poowf/eth-chainlist/commit/6d6ab7b2db160149712ff9cbd6cdb06b3111cee5))
|
|
10
|
+
|
|
11
|
+
### 0.0.769 (2026-05-13)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.768 ([4cb38b6](https://github.com/poowf/eth-chainlist/commit/4cb38b6cd7ebe1f8b08c6d9007145d832316b44d))
|
|
17
|
+
* update chain data ([65c725f](https://github.com/poowf/eth-chainlist/commit/65c725ff3b852116ea6116624f47c2490f7cfefd))
|
|
18
|
+
|
|
3
19
|
### 0.0.768 (2026-05-12)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -2893,7 +2893,8 @@ const chainArray = [
|
|
|
2893
2893
|
'wss://polygon-bor-rpc.publicnode.com',
|
|
2894
2894
|
'https://polygon.gateway.tenderly.co',
|
|
2895
2895
|
'wss://polygon.gateway.tenderly.co',
|
|
2896
|
-
'https://rpc.satelink.network/rpc/polygon'
|
|
2896
|
+
'https://rpc.satelink.network/rpc/polygon',
|
|
2897
|
+
'https://rpcfree.com/polygon-rpc'
|
|
2897
2898
|
],
|
|
2898
2899
|
faucets: [],
|
|
2899
2900
|
nativeCurrency: { name: 'POL', symbol: 'POL', decimals: 18 },
|
|
@@ -12888,7 +12889,7 @@ const chainArray = [
|
|
|
12888
12889
|
chain: 'Atlantis',
|
|
12889
12890
|
rpc: [ 'https://rpc.atlantischain.network' ],
|
|
12890
12891
|
faucets: [ 'https://faucet.atlantischain.network' ],
|
|
12891
|
-
nativeCurrency: { name: '
|
|
12892
|
+
nativeCurrency: { name: 'PYR', symbol: 'PYR', decimals: 18 },
|
|
12892
12893
|
infoURL: 'https://elysiumchain.tech',
|
|
12893
12894
|
shortName: 'ATL',
|
|
12894
12895
|
chainId: 1338,
|
|
@@ -20875,15 +20876,37 @@ const chainArray = [
|
|
|
20875
20876
|
},
|
|
20876
20877
|
{
|
|
20877
20878
|
name: 'MegaETH Mainnet',
|
|
20878
|
-
chain: '
|
|
20879
|
-
|
|
20880
|
-
|
|
20879
|
+
chain: 'MegaETH',
|
|
20880
|
+
rpc: [
|
|
20881
|
+
'https://mainnet.megaeth.com/rpc',
|
|
20882
|
+
'wss://mainnet.megaeth.com/ws'
|
|
20883
|
+
],
|
|
20881
20884
|
faucets: [],
|
|
20882
|
-
|
|
20885
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
20883
20886
|
infoURL: 'https://megaeth.com',
|
|
20884
20887
|
shortName: 'megaeth',
|
|
20885
20888
|
chainId: 4326,
|
|
20886
|
-
networkId: 4326
|
|
20889
|
+
networkId: 4326,
|
|
20890
|
+
icon: 'megaeth',
|
|
20891
|
+
explorers: [
|
|
20892
|
+
{
|
|
20893
|
+
name: 'MegaETH Etherscan',
|
|
20894
|
+
url: 'https://mega.etherscan.io',
|
|
20895
|
+
standard: 'EIP3091'
|
|
20896
|
+
},
|
|
20897
|
+
{
|
|
20898
|
+
name: 'MegaETH Blockscout',
|
|
20899
|
+
url: 'https://megaeth.blockscout.com',
|
|
20900
|
+
icon: 'blockscout',
|
|
20901
|
+
standard: 'EIP3091'
|
|
20902
|
+
}
|
|
20903
|
+
],
|
|
20904
|
+
parent: {
|
|
20905
|
+
type: 'L2',
|
|
20906
|
+
chain: 'eip155-1',
|
|
20907
|
+
bridges: [ { url: 'https://rabbithole.megaeth.com' } ]
|
|
20908
|
+
},
|
|
20909
|
+
status: 'active'
|
|
20887
20910
|
},
|
|
20888
20911
|
{
|
|
20889
20912
|
name: 'Bobafuji Testnet',
|
|
@@ -23224,15 +23247,24 @@ const chainArray = [
|
|
|
23224
23247
|
},
|
|
23225
23248
|
{
|
|
23226
23249
|
name: 'MegaETH Testnet',
|
|
23227
|
-
chain: '
|
|
23228
|
-
|
|
23229
|
-
|
|
23230
|
-
|
|
23231
|
-
infoURL: 'https://
|
|
23232
|
-
shortName: '
|
|
23250
|
+
chain: 'MegaETH',
|
|
23251
|
+
rpc: [ 'https://carrot.megaeth.com/rpc' ],
|
|
23252
|
+
faucets: [ 'https://testnet.megaeth.com' ],
|
|
23253
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
23254
|
+
infoURL: 'https://megaeth.com',
|
|
23255
|
+
shortName: 'megaeth-testnet',
|
|
23233
23256
|
chainId: 6343,
|
|
23234
23257
|
networkId: 6343,
|
|
23235
|
-
|
|
23258
|
+
icon: 'megaeth',
|
|
23259
|
+
explorers: [
|
|
23260
|
+
{
|
|
23261
|
+
name: 'MegaETH Testnet Explorer',
|
|
23262
|
+
url: 'https://testnet-mega.etherscan.io',
|
|
23263
|
+
standard: 'EIP3091'
|
|
23264
|
+
}
|
|
23265
|
+
],
|
|
23266
|
+
parent: { type: 'L2', chain: 'eip155-11155111' },
|
|
23267
|
+
status: 'active'
|
|
23236
23268
|
},
|
|
23237
23269
|
{
|
|
23238
23270
|
name: 'Digit Soul Smart Chain',
|
|
@@ -23265,6 +23297,25 @@ const chainArray = [
|
|
|
23265
23297
|
}
|
|
23266
23298
|
]
|
|
23267
23299
|
},
|
|
23300
|
+
{
|
|
23301
|
+
name: 'MIZUHIKI Testnet Awaji',
|
|
23302
|
+
chain: 'MIZU',
|
|
23303
|
+
rpc: [ 'https://rpc.awaji.mizuhiki.io' ],
|
|
23304
|
+
faucets: [ 'https://faucet.awaji.mizuhiki.io' ],
|
|
23305
|
+
nativeCurrency: { name: 'MIZU', symbol: 'MIZU', decimals: 18 },
|
|
23306
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
23307
|
+
infoURL: 'https://mizuhiki.io/',
|
|
23308
|
+
shortName: 'awaji',
|
|
23309
|
+
chainId: 6497,
|
|
23310
|
+
networkId: 6497,
|
|
23311
|
+
explorers: [
|
|
23312
|
+
{
|
|
23313
|
+
name: 'blockscout',
|
|
23314
|
+
url: 'https://awaji.blockscout.com',
|
|
23315
|
+
standard: 'EIP3091'
|
|
23316
|
+
}
|
|
23317
|
+
]
|
|
23318
|
+
},
|
|
23268
23319
|
{
|
|
23269
23320
|
name: 'Peerpay',
|
|
23270
23321
|
chain: 'P2P',
|
|
@@ -24071,6 +24122,44 @@ const chainArray = [
|
|
|
24071
24122
|
status: 'incubating',
|
|
24072
24123
|
explorers: []
|
|
24073
24124
|
},
|
|
24125
|
+
{
|
|
24126
|
+
name: 'Sentrix Chain',
|
|
24127
|
+
chain: 'Sentrix',
|
|
24128
|
+
rpc: [ 'https://rpc.sentrixchain.com' ],
|
|
24129
|
+
faucets: [],
|
|
24130
|
+
nativeCurrency: { name: 'Sentrix', symbol: 'SRX', decimals: 18 },
|
|
24131
|
+
infoURL: 'https://sentrixchain.com',
|
|
24132
|
+
shortName: 'srx',
|
|
24133
|
+
chainId: 7119,
|
|
24134
|
+
networkId: 7119,
|
|
24135
|
+
icon: 'sentrix',
|
|
24136
|
+
explorers: [
|
|
24137
|
+
{
|
|
24138
|
+
name: 'Sentrix Scan',
|
|
24139
|
+
url: 'https://scan.sentrixchain.com',
|
|
24140
|
+
standard: 'EIP3091'
|
|
24141
|
+
}
|
|
24142
|
+
]
|
|
24143
|
+
},
|
|
24144
|
+
{
|
|
24145
|
+
name: 'Sentrix Testnet',
|
|
24146
|
+
chain: 'Sentrix',
|
|
24147
|
+
rpc: [ 'https://testnet-rpc.sentrixchain.com' ],
|
|
24148
|
+
faucets: [ 'https://faucet.sentrixchain.com' ],
|
|
24149
|
+
nativeCurrency: { name: 'Sentrix', symbol: 'SRX', decimals: 18 },
|
|
24150
|
+
infoURL: 'https://sentrixchain.com',
|
|
24151
|
+
shortName: 'srx-testnet',
|
|
24152
|
+
chainId: 7120,
|
|
24153
|
+
networkId: 7120,
|
|
24154
|
+
icon: 'sentrix',
|
|
24155
|
+
explorers: [
|
|
24156
|
+
{
|
|
24157
|
+
name: 'Sentrix Scan Testnet',
|
|
24158
|
+
url: 'https://scan-testnet.sentrixchain.com',
|
|
24159
|
+
standard: 'EIP3091'
|
|
24160
|
+
}
|
|
24161
|
+
]
|
|
24162
|
+
},
|
|
24074
24163
|
{
|
|
24075
24164
|
name: 'Bitrock Mainnet',
|
|
24076
24165
|
chain: 'Bitrock',
|
|
@@ -26123,6 +26212,20 @@ const chainArray = [
|
|
|
26123
26212
|
}
|
|
26124
26213
|
]
|
|
26125
26214
|
},
|
|
26215
|
+
{
|
|
26216
|
+
name: 'EB-Chain',
|
|
26217
|
+
chain: 'EBC',
|
|
26218
|
+
rpc: [ 'https://rpc.ebcscan.net' ],
|
|
26219
|
+
faucets: [ 'https://ebcscan.net/faucet' ],
|
|
26220
|
+
nativeCurrency: { name: 'EBC', symbol: 'EBC', decimals: 18 },
|
|
26221
|
+
infoURL: 'https://ebcscan.net',
|
|
26222
|
+
shortName: 'ebc',
|
|
26223
|
+
chainId: 8721,
|
|
26224
|
+
networkId: 8721,
|
|
26225
|
+
explorers: [
|
|
26226
|
+
{ name: 'EBCScan', url: 'https://ebcscan.net', standard: 'none' }
|
|
26227
|
+
]
|
|
26228
|
+
},
|
|
26126
26229
|
{
|
|
26127
26230
|
name: 'TOOL Global Mainnet',
|
|
26128
26231
|
chain: 'OLO',
|
|
@@ -49602,6 +49705,7 @@ const chainArray = [
|
|
|
49602
49705
|
rpc: [
|
|
49603
49706
|
'https://rpc.onfachain.com',
|
|
49604
49707
|
'https://rpc.onfachain.net',
|
|
49708
|
+
'https://main.onfachain.net',
|
|
49605
49709
|
'wss://ws.onfachain.com',
|
|
49606
49710
|
'wss://ws.onfachain.net'
|
|
49607
49711
|
],
|
|
@@ -49611,6 +49715,7 @@ const chainArray = [
|
|
|
49611
49715
|
shortName: 'onfachain',
|
|
49612
49716
|
chainId: 12082025,
|
|
49613
49717
|
networkId: 12082025,
|
|
49718
|
+
icon: 'onfachain',
|
|
49614
49719
|
explorers: [
|
|
49615
49720
|
{
|
|
49616
49721
|
name: 'ONFA Scan',
|
|
@@ -50924,6 +51029,24 @@ const chainArray = [
|
|
|
50924
51029
|
}
|
|
50925
51030
|
]
|
|
50926
51031
|
},
|
|
51032
|
+
{
|
|
51033
|
+
name: 'Cryptos Testnet Beta',
|
|
51034
|
+
chain: 'CRYPTOS',
|
|
51035
|
+
rpc: [ 'https://rpc-testnet-beta-evm.cryptos.com' ],
|
|
51036
|
+
faucets: [],
|
|
51037
|
+
nativeCurrency: { name: 'Cryptos', symbol: 'CRPTOS', decimals: 18 },
|
|
51038
|
+
infoURL: 'https://cryptos.com',
|
|
51039
|
+
shortName: 'cryptos-testnet-beta',
|
|
51040
|
+
chainId: 77777777,
|
|
51041
|
+
networkId: 77777777,
|
|
51042
|
+
explorers: [
|
|
51043
|
+
{
|
|
51044
|
+
name: 'Cryptos Explorer (Testnet Beta)',
|
|
51045
|
+
url: 'https://explorer-beta.cryptos.com',
|
|
51046
|
+
standard: 'EIP3091'
|
|
51047
|
+
}
|
|
51048
|
+
]
|
|
51049
|
+
},
|
|
50927
51050
|
{
|
|
50928
51051
|
name: '0xHash Testnet',
|
|
50929
51052
|
chain: 'HETH',
|
|
@@ -53191,26 +53314,26 @@ const chainArray = [
|
|
|
53191
53314
|
]
|
|
53192
53315
|
},
|
|
53193
53316
|
{
|
|
53194
|
-
name: 'ONFA Chain',
|
|
53195
|
-
title: 'ONFA Chain',
|
|
53317
|
+
name: 'ONFA Chain Testnet',
|
|
53318
|
+
title: 'ONFA Chain Testnet',
|
|
53196
53319
|
chain: 'onfa',
|
|
53197
53320
|
rpc: [
|
|
53198
|
-
'https://rpc.
|
|
53199
|
-
'https://rpc.onfachain.
|
|
53200
|
-
'wss://ws.
|
|
53201
|
-
'wss://ws.onfachain.
|
|
53321
|
+
'https://rpc-testnet.onfachain.com',
|
|
53322
|
+
'https://rpc-testnet.onfachain.net',
|
|
53323
|
+
'wss://ws-testnet.onfachain.com',
|
|
53324
|
+
'wss://ws-testnet.onfachain.net'
|
|
53202
53325
|
],
|
|
53203
53326
|
faucets: [],
|
|
53204
|
-
nativeCurrency: { name: '
|
|
53205
|
-
infoURL: 'https://
|
|
53206
|
-
shortName: '
|
|
53327
|
+
nativeCurrency: { name: 'ONFA Coin', symbol: 'OFCT', decimals: 18 },
|
|
53328
|
+
infoURL: 'https://onfachain.com',
|
|
53329
|
+
shortName: 'onfatestnet',
|
|
53207
53330
|
chainId: 8691942025,
|
|
53208
53331
|
networkId: 8691942025,
|
|
53209
53332
|
icon: 'onfachain',
|
|
53210
53333
|
explorers: [
|
|
53211
53334
|
{
|
|
53212
53335
|
name: 'ONFA Scan',
|
|
53213
|
-
url: 'https://onfascan.
|
|
53336
|
+
url: 'https://onfascan.io',
|
|
53214
53337
|
icon: 'onfachain',
|
|
53215
53338
|
standard: 'EIP3091'
|
|
53216
53339
|
}
|