eth-chainlist 0.0.781 → 0.0.783
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 +109 -24
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.783 (2026-05-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.782 ([390cd9b](https://github.com/poowf/eth-chainlist/commit/390cd9bb496bf4110c32035e746e13d57078d9fa))
|
|
9
|
+
* update chain data ([a865c26](https://github.com/poowf/eth-chainlist/commit/a865c26fcba9b15e49a39d625af2813b6303d49e))
|
|
10
|
+
|
|
11
|
+
### 0.0.782 (2026-05-29)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.781 ([789ac8f](https://github.com/poowf/eth-chainlist/commit/789ac8f120b6b105abbbe47bc9d07cdfdc12d3ba))
|
|
17
|
+
* update chain data ([bc452fb](https://github.com/poowf/eth-chainlist/commit/bc452fb66ba9754ba2a043ac3ed97fdb1985b71c))
|
|
18
|
+
|
|
3
19
|
### 0.0.781 (2026-05-26)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -2333,11 +2333,7 @@ const chainArray = [
|
|
|
2333
2333
|
name: 'Shibarium',
|
|
2334
2334
|
chain: 'Shibarium',
|
|
2335
2335
|
icon: 'shibarium',
|
|
2336
|
-
rpc: [
|
|
2337
|
-
'https://www.shibrpc.com',
|
|
2338
|
-
'https://rpc.shibrpc.com',
|
|
2339
|
-
'https://shib.nownodes.io'
|
|
2340
|
-
],
|
|
2336
|
+
rpc: [ 'https://rpc.shibrpc.com', 'https://shib.nownodes.io' ],
|
|
2341
2337
|
faucets: [],
|
|
2342
2338
|
nativeCurrency: { name: 'BONE Shibarium', symbol: 'BONE', decimals: 18 },
|
|
2343
2339
|
infoURL: 'https://shibariumecosystem.com',
|
|
@@ -7561,14 +7557,14 @@ const chainArray = [
|
|
|
7561
7557
|
]
|
|
7562
7558
|
},
|
|
7563
7559
|
{
|
|
7564
|
-
name: '
|
|
7560
|
+
name: 'Pontes-Appia DLT',
|
|
7565
7561
|
chain: 'BESU',
|
|
7566
7562
|
icon: 'ethereum',
|
|
7567
7563
|
rpc: [],
|
|
7568
7564
|
faucets: [],
|
|
7569
|
-
nativeCurrency: { name: '
|
|
7565
|
+
nativeCurrency: { name: 'AppiaToken', symbol: 'ATK', decimals: 18 },
|
|
7570
7566
|
infoURL: 'https://www.tuosito.it',
|
|
7571
|
-
shortName: '
|
|
7567
|
+
shortName: 'appia-540',
|
|
7572
7568
|
chainId: 540,
|
|
7573
7569
|
networkId: 540,
|
|
7574
7570
|
explorers: []
|
|
@@ -10892,6 +10888,31 @@ const chainArray = [
|
|
|
10892
10888
|
chainId: 1012,
|
|
10893
10889
|
networkId: 1012
|
|
10894
10890
|
},
|
|
10891
|
+
{
|
|
10892
|
+
name: 'MAI Chain Mainnet',
|
|
10893
|
+
chain: 'MAI',
|
|
10894
|
+
rpc: [
|
|
10895
|
+
'https://mainnet-node-0.maichain.org',
|
|
10896
|
+
'https://mainnet-node-1.maichain.org',
|
|
10897
|
+
'https://mainnet-node-2.maichain.org'
|
|
10898
|
+
],
|
|
10899
|
+
faucets: [],
|
|
10900
|
+
nativeCurrency: { name: 'MAI Chain Native Token', symbol: 'MAI', decimals: 18 },
|
|
10901
|
+
features: [ { name: 'EIP1559' } ],
|
|
10902
|
+
infoURL: '',
|
|
10903
|
+
shortName: 'mai',
|
|
10904
|
+
chainId: 1019,
|
|
10905
|
+
networkId: 1019,
|
|
10906
|
+
icon: 'mai',
|
|
10907
|
+
explorers: [
|
|
10908
|
+
{
|
|
10909
|
+
name: 'maiscan',
|
|
10910
|
+
url: 'https://maiscan.org',
|
|
10911
|
+
icon: 'mai',
|
|
10912
|
+
standard: 'EIP3091'
|
|
10913
|
+
}
|
|
10914
|
+
]
|
|
10915
|
+
},
|
|
10895
10916
|
{
|
|
10896
10917
|
name: 'Sakura',
|
|
10897
10918
|
chain: 'Sakura',
|
|
@@ -25049,29 +25070,26 @@ const chainArray = [
|
|
|
25049
25070
|
]
|
|
25050
25071
|
},
|
|
25051
25072
|
{
|
|
25052
|
-
name: '
|
|
25053
|
-
chain: '
|
|
25054
|
-
|
|
25055
|
-
|
|
25056
|
-
'https://testnet2.riseofthewarbots.com',
|
|
25057
|
-
'https://testnet3.riseofthewarbots.com',
|
|
25058
|
-
'https://testnet4.riseofthewarbots.com',
|
|
25059
|
-
'https://testnet5.riseofthewarbots.com'
|
|
25060
|
-
],
|
|
25073
|
+
name: 'TTL Coin',
|
|
25074
|
+
chain: 'TTL',
|
|
25075
|
+
icon: 'ttl',
|
|
25076
|
+
rpc: [ 'https://rpc.ttl1.top' ],
|
|
25061
25077
|
faucets: [],
|
|
25062
|
-
nativeCurrency: { name: '
|
|
25063
|
-
|
|
25064
|
-
|
|
25078
|
+
nativeCurrency: { name: 'TTL Coin', symbol: 'TTL', decimals: 18 },
|
|
25079
|
+
features: [ { name: 'EIP155' } ],
|
|
25080
|
+
infoURL: 'https://github.com/okneo31/ttlcoin',
|
|
25081
|
+
shortName: 'ttl',
|
|
25065
25082
|
chainId: 7777,
|
|
25066
25083
|
networkId: 7777,
|
|
25067
|
-
slip44: 1,
|
|
25068
25084
|
explorers: [
|
|
25069
25085
|
{
|
|
25070
|
-
name: '
|
|
25071
|
-
url: 'https://
|
|
25086
|
+
name: 'TTL Scan',
|
|
25087
|
+
url: 'https://scan.ttl1.top',
|
|
25072
25088
|
standard: 'none'
|
|
25073
25089
|
}
|
|
25074
|
-
]
|
|
25090
|
+
],
|
|
25091
|
+
redFlags: [ 'reusedChainId' ],
|
|
25092
|
+
status: 'active'
|
|
25075
25093
|
},
|
|
25076
25094
|
{
|
|
25077
25095
|
name: 'Orenium Mainnet Protocol',
|
|
@@ -36063,6 +36081,25 @@ const chainArray = [
|
|
|
36063
36081
|
networkId: 50001,
|
|
36064
36082
|
explorers: []
|
|
36065
36083
|
},
|
|
36084
|
+
{
|
|
36085
|
+
name: 'Mantle Hoodi Testnet',
|
|
36086
|
+
chain: 'ETH',
|
|
36087
|
+
rpc: [ 'https://rpc.hoodi.mantle.xyz' ],
|
|
36088
|
+
faucets: [ 'https://faucet.mantle.xyz' ],
|
|
36089
|
+
nativeCurrency: { name: 'Hoodi Mantle', symbol: 'MNT', decimals: 18 },
|
|
36090
|
+
infoURL: 'https://mantle.xyz',
|
|
36091
|
+
shortName: 'mnt-hoodi',
|
|
36092
|
+
chainId: 50002,
|
|
36093
|
+
networkId: 50002,
|
|
36094
|
+
slip44: 1,
|
|
36095
|
+
explorers: [
|
|
36096
|
+
{
|
|
36097
|
+
name: 'blockscout',
|
|
36098
|
+
url: 'https://explorer.hoodi.mantle.xyz',
|
|
36099
|
+
standard: 'EIP3091'
|
|
36100
|
+
}
|
|
36101
|
+
]
|
|
36102
|
+
},
|
|
36066
36103
|
{
|
|
36067
36104
|
name: 'Yooldo Verse Mainnet',
|
|
36068
36105
|
chain: 'Yooldo Verse',
|
|
@@ -42244,6 +42281,26 @@ const chainArray = [
|
|
|
42244
42281
|
}
|
|
42245
42282
|
]
|
|
42246
42283
|
},
|
|
42284
|
+
{
|
|
42285
|
+
name: 'Gravity',
|
|
42286
|
+
chain: 'Gravity',
|
|
42287
|
+
icon: 'gravity',
|
|
42288
|
+
rpc: [ 'https://mainnet-rpc.gravity.xyz' ],
|
|
42289
|
+
faucets: [],
|
|
42290
|
+
nativeCurrency: { name: 'Gravity', symbol: 'G', decimals: 18 },
|
|
42291
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
42292
|
+
infoURL: 'https://gravity.xyz',
|
|
42293
|
+
shortName: 'grav',
|
|
42294
|
+
chainId: 127001,
|
|
42295
|
+
networkId: 127001,
|
|
42296
|
+
explorers: [
|
|
42297
|
+
{
|
|
42298
|
+
name: 'Gravity Mainnet Explorer',
|
|
42299
|
+
url: 'https://mainnet-explorer.gravity.xyz',
|
|
42300
|
+
standard: 'EIP3091'
|
|
42301
|
+
}
|
|
42302
|
+
]
|
|
42303
|
+
},
|
|
42247
42304
|
{
|
|
42248
42305
|
name: 'Etherlink Shadownet Testnet',
|
|
42249
42306
|
chain: 'Etherlink',
|
|
@@ -50278,6 +50335,20 @@ const chainArray = [
|
|
|
50278
50335
|
chainId: 18289463,
|
|
50279
50336
|
networkId: 18289463
|
|
50280
50337
|
},
|
|
50338
|
+
{
|
|
50339
|
+
name: 'Crynux on Base',
|
|
50340
|
+
chain: 'ETH',
|
|
50341
|
+
rpc: [ 'https://json-rpc.base.crynux.io' ],
|
|
50342
|
+
faucets: [],
|
|
50343
|
+
nativeCurrency: { name: 'Crynux', symbol: 'CNX', decimals: 18 },
|
|
50344
|
+
infoURL: 'https://crynux.io',
|
|
50345
|
+
shortName: 'crynux-base',
|
|
50346
|
+
chainId: 18896214,
|
|
50347
|
+
networkId: 18896214,
|
|
50348
|
+
icon: 'crynux',
|
|
50349
|
+
explorers: [],
|
|
50350
|
+
parent: { type: 'L2', chain: 'eip155-8453' }
|
|
50351
|
+
},
|
|
50281
50352
|
{
|
|
50282
50353
|
name: 'DeepBrainChain Testnet',
|
|
50283
50354
|
chain: 'DeepBrainChain',
|
|
@@ -51752,6 +51823,20 @@ const chainArray = [
|
|
|
51752
51823
|
],
|
|
51753
51824
|
parent: { type: 'L2', chain: 'eip155-11155111' }
|
|
51754
51825
|
},
|
|
51826
|
+
{
|
|
51827
|
+
name: 'Crynux on Base Sepolia',
|
|
51828
|
+
chain: 'ETH',
|
|
51829
|
+
rpc: [ 'https://json-rpc.base-sepolia.crynux.io' ],
|
|
51830
|
+
faucets: [],
|
|
51831
|
+
nativeCurrency: { name: 'Sepolia Crynux', symbol: 'CNX', decimals: 18 },
|
|
51832
|
+
infoURL: 'https://crynux.io',
|
|
51833
|
+
shortName: 'crynux-base-sepolia',
|
|
51834
|
+
chainId: 188962142,
|
|
51835
|
+
networkId: 188962142,
|
|
51836
|
+
icon: 'crynux',
|
|
51837
|
+
explorers: [],
|
|
51838
|
+
parent: { type: 'L2', chain: 'eip155-84532' }
|
|
51839
|
+
},
|
|
51755
51840
|
{
|
|
51756
51841
|
name: 'Gather Mainnet Network',
|
|
51757
51842
|
chain: 'GTH',
|