eth-chainlist 0.0.647 → 0.0.649
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 +241 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.649 (2025-04-14)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.648 ([a3fce6d](https://github.com/poowf/eth-chainlist/commit/a3fce6d1727d5b8ce4d91270194f5141db175d8d))
|
9
|
+
* update chain data ([745e06a](https://github.com/poowf/eth-chainlist/commit/745e06ac0455bd1dfca6149dce44659c61500043))
|
10
|
+
|
11
|
+
### 0.0.648 (2025-04-13)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.647 ([49a0a99](https://github.com/poowf/eth-chainlist/commit/49a0a992aa1d691ad0964f44f9063b819b9433a3))
|
17
|
+
* update chain data ([6fc9eea](https://github.com/poowf/eth-chainlist/commit/6fc9eeaa99b3937cdbe9ee72e2fc1d78e10a701e))
|
18
|
+
|
3
19
|
### 0.0.647 (2025-04-10)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -10903,6 +10903,27 @@ const chainArray = [
|
|
10903
10903
|
}
|
10904
10904
|
]
|
10905
10905
|
},
|
10906
|
+
{
|
10907
|
+
name: 'StateMesh',
|
10908
|
+
icon: 'statemesh',
|
10909
|
+
chain: 'MESH',
|
10910
|
+
rpc: [ 'https://rpc.statemesh.net' ],
|
10911
|
+
faucets: [],
|
10912
|
+
nativeCurrency: { name: 'StateMesh', symbol: 'MESH', decimals: 18 },
|
10913
|
+
infoURL: 'https://statemesh.net',
|
10914
|
+
shortName: 'mesh',
|
10915
|
+
chainId: 1134,
|
10916
|
+
networkId: 1134,
|
10917
|
+
slip44: 1134,
|
10918
|
+
explorers: [
|
10919
|
+
{
|
10920
|
+
name: 'blockscout',
|
10921
|
+
url: 'https://scan.statemesh.net',
|
10922
|
+
icon: 'blockscout',
|
10923
|
+
standard: 'EIP3091'
|
10924
|
+
}
|
10925
|
+
]
|
10926
|
+
},
|
10906
10927
|
{
|
10907
10928
|
name: 'Lisk',
|
10908
10929
|
chain: 'ETH',
|
@@ -12086,6 +12107,27 @@ const chainArray = [
|
|
12086
12107
|
}
|
12087
12108
|
]
|
12088
12109
|
},
|
12110
|
+
{
|
12111
|
+
name: 'Kii Testnet Oro',
|
12112
|
+
chain: 'KII',
|
12113
|
+
rpc: [ 'https://json-rpc.uno.sentry.testnet.v3.kiivalidator.com' ],
|
12114
|
+
faucets: [ 'https://explorer.kiichain.io/testnet/faucet' ],
|
12115
|
+
nativeCurrency: { name: 'Kii', symbol: 'KII', decimals: 18 },
|
12116
|
+
features: [],
|
12117
|
+
infoURL: 'https://kiichain.io',
|
12118
|
+
shortName: 'kiioro',
|
12119
|
+
chainId: 1336,
|
12120
|
+
networkId: 1336,
|
12121
|
+
icon: 'kii',
|
12122
|
+
explorers: [
|
12123
|
+
{
|
12124
|
+
name: 'KiiExplorer',
|
12125
|
+
url: 'https://explorer.kiichain.io/testnet',
|
12126
|
+
icon: 'kii',
|
12127
|
+
standard: 'none'
|
12128
|
+
}
|
12129
|
+
]
|
12130
|
+
},
|
12089
12131
|
{
|
12090
12132
|
name: 'Geth Testnet',
|
12091
12133
|
title: 'Go Ethereum (Geth) Private Testnet',
|
@@ -12388,6 +12430,26 @@ const chainArray = [
|
|
12388
12430
|
bridges: [ { url: 'https://bridge.perennial.foundation' } ]
|
12389
12431
|
}
|
12390
12432
|
},
|
12433
|
+
{
|
12434
|
+
name: 'ONINO Mainnet',
|
12435
|
+
chain: 'ONI',
|
12436
|
+
rpc: [ 'https://rpc.onino.io' ],
|
12437
|
+
faucets: [ 'https://faucet.onino.io' ],
|
12438
|
+
nativeCurrency: { name: 'ONI', symbol: 'ONI', decimals: 18 },
|
12439
|
+
infoURL: 'https://onino.io',
|
12440
|
+
shortName: 'onino',
|
12441
|
+
chainId: 1425,
|
12442
|
+
networkId: 1425,
|
12443
|
+
icon: 'onino',
|
12444
|
+
explorers: [
|
12445
|
+
{
|
12446
|
+
name: 'onino',
|
12447
|
+
url: 'https://explorer.onino.io',
|
12448
|
+
icon: 'onino',
|
12449
|
+
standard: 'EIP3091'
|
12450
|
+
}
|
12451
|
+
]
|
12452
|
+
},
|
12391
12453
|
{
|
12392
12454
|
name: 'Rikeza Network Mainnet',
|
12393
12455
|
title: 'Rikeza Network Mainnet',
|
@@ -13217,6 +13279,48 @@ const chainArray = [
|
|
13217
13279
|
}
|
13218
13280
|
]
|
13219
13281
|
},
|
13282
|
+
{
|
13283
|
+
name: 'Fuga Mainnet',
|
13284
|
+
chain: 'Fuga',
|
13285
|
+
rpc: [ 'https://rpc.fuga.blue' ],
|
13286
|
+
faucets: [],
|
13287
|
+
nativeCurrency: { name: 'FUGA', symbol: 'FUGA', decimals: 18 },
|
13288
|
+
infoURL: 'https://fuga.one',
|
13289
|
+
shortName: 'FUGA',
|
13290
|
+
chainId: 1732,
|
13291
|
+
networkId: 1732,
|
13292
|
+
slip44: 732,
|
13293
|
+
explorers: [],
|
13294
|
+
status: 'incubating'
|
13295
|
+
},
|
13296
|
+
{
|
13297
|
+
name: 'Fuga Testnet',
|
13298
|
+
chain: 'Fuga',
|
13299
|
+
rpc: [ 'https://rpc-testnet.fuga.blue' ],
|
13300
|
+
faucets: [],
|
13301
|
+
nativeCurrency: { name: 'FUGA', symbol: 'FUGA', decimals: 18 },
|
13302
|
+
infoURL: 'https://fuga.one',
|
13303
|
+
shortName: 'FUGA_T',
|
13304
|
+
chainId: 1733,
|
13305
|
+
networkId: 1733,
|
13306
|
+
slip44: 1,
|
13307
|
+
explorers: [],
|
13308
|
+
status: 'incubating'
|
13309
|
+
},
|
13310
|
+
{
|
13311
|
+
name: 'Fuga Develop',
|
13312
|
+
chain: 'Fuga',
|
13313
|
+
rpc: [ 'https://rpc-develop.fuga.blue' ],
|
13314
|
+
faucets: [],
|
13315
|
+
nativeCurrency: { name: 'FUGA', symbol: 'FUGA', decimals: 18 },
|
13316
|
+
infoURL: 'https://fuga.one',
|
13317
|
+
shortName: 'FUGA_D',
|
13318
|
+
chainId: 1734,
|
13319
|
+
networkId: 1734,
|
13320
|
+
slip44: 1,
|
13321
|
+
explorers: [],
|
13322
|
+
status: 'incubating'
|
13323
|
+
},
|
13220
13324
|
{
|
13221
13325
|
name: 'Metal L2 Testnet',
|
13222
13326
|
chain: 'Metal L2 Testnet',
|
@@ -15478,7 +15582,12 @@ const chainArray = [
|
|
15478
15582
|
name: 'Game7',
|
15479
15583
|
title: 'Game7',
|
15480
15584
|
chain: 'Game7',
|
15481
|
-
rpc: [
|
15585
|
+
rpc: [
|
15586
|
+
'https://mainnet-rpc.game7.io',
|
15587
|
+
'wss://mainnet-rpc.game7.io',
|
15588
|
+
'https://mainnet-rpc.game7.build',
|
15589
|
+
'wss://mainnet-rpc.game7.build'
|
15590
|
+
],
|
15482
15591
|
faucets: [],
|
15483
15592
|
nativeCurrency: { name: 'G7', symbol: 'G7', decimals: 18 },
|
15484
15593
|
features: [ { name: 'EIP155' } ],
|
@@ -20359,15 +20468,26 @@ const chainArray = [
|
|
20359
20468
|
{
|
20360
20469
|
name: 'Settlus',
|
20361
20470
|
chain: 'ETH',
|
20362
|
-
rpc: [],
|
20471
|
+
rpc: [ 'https://settlus-mainnet.g.alchemy.com/public' ],
|
20363
20472
|
faucets: [],
|
20364
20473
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
20365
20474
|
infoURL: 'https://settlus.org',
|
20366
20475
|
shortName: 'setl',
|
20367
20476
|
chainId: 5371,
|
20368
20477
|
networkId: 5371,
|
20369
|
-
parent: {
|
20370
|
-
|
20478
|
+
parent: {
|
20479
|
+
type: 'L2',
|
20480
|
+
chain: 'eip155-1',
|
20481
|
+
bridges: [ { url: 'https://settlus-mainnet.bridge.alchemy.com/' } ]
|
20482
|
+
},
|
20483
|
+
explorers: [
|
20484
|
+
{
|
20485
|
+
name: 'Settlus Mainnet Explorer',
|
20486
|
+
url: 'https://mainnet.settlus.network',
|
20487
|
+
standard: 'EIP3091'
|
20488
|
+
}
|
20489
|
+
],
|
20490
|
+
status: 'active'
|
20371
20491
|
},
|
20372
20492
|
{
|
20373
20493
|
name: 'Settlus Testnet',
|
@@ -20399,7 +20519,7 @@ const chainArray = [
|
|
20399
20519
|
explorers: [
|
20400
20520
|
{
|
20401
20521
|
name: 'Settlus Sepolia Testnet Explorer',
|
20402
|
-
url: 'https://
|
20522
|
+
url: 'https://sepolia.settlus.network',
|
20403
20523
|
standard: 'EIP3091'
|
20404
20524
|
}
|
20405
20525
|
],
|
@@ -27118,7 +27238,12 @@ const chainArray = [
|
|
27118
27238
|
name: 'Game7 Testnet',
|
27119
27239
|
title: 'Game7 Testnet',
|
27120
27240
|
chain: 'Game7',
|
27121
|
-
rpc: [
|
27241
|
+
rpc: [
|
27242
|
+
'https://testnet-rpc.game7.io',
|
27243
|
+
'wss://testnet-rpc.game7.io',
|
27244
|
+
'https://testnet-rpc.game7.build',
|
27245
|
+
'wss://testnet-rpc.game7.build'
|
27246
|
+
],
|
27122
27247
|
faucets: [],
|
27123
27248
|
nativeCurrency: { name: 'TG7T', symbol: 'TG7T', decimals: 18 },
|
27124
27249
|
features: [ { name: 'EIP155' } ],
|
@@ -31311,6 +31436,28 @@ const chainArray = [
|
|
31311
31436
|
}
|
31312
31437
|
]
|
31313
31438
|
},
|
31439
|
+
{
|
31440
|
+
name: 'GUNZ',
|
31441
|
+
chain: 'GUNZ',
|
31442
|
+
rpc: [
|
31443
|
+
'https://rpc.gunzchain.io/ext/bc/2M47TxWHGnhNtq6pM5zPXdATBtuqubxn5EPFgFmEawCQr9WFML/rpc'
|
31444
|
+
],
|
31445
|
+
faucets: [],
|
31446
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
31447
|
+
nativeCurrency: { name: 'GUN', symbol: 'GUN', decimals: 18 },
|
31448
|
+
icon: 'gunz',
|
31449
|
+
infoURL: 'https://gunbygunz.com',
|
31450
|
+
shortName: 'gunz-mainnet',
|
31451
|
+
chainId: 43419,
|
31452
|
+
networkId: 43419,
|
31453
|
+
explorers: [
|
31454
|
+
{
|
31455
|
+
name: 'blockscout',
|
31456
|
+
url: 'https://gunzscan.io',
|
31457
|
+
standard: 'EIP3091'
|
31458
|
+
}
|
31459
|
+
]
|
31460
|
+
},
|
31314
31461
|
{
|
31315
31462
|
name: 'Formicarium',
|
31316
31463
|
title: 'MemeCore Testnet Formicarium',
|
@@ -32163,12 +32310,12 @@ const chainArray = [
|
|
32163
32310
|
]
|
32164
32311
|
},
|
32165
32312
|
{
|
32166
|
-
name: 'Reddio
|
32167
|
-
title: 'Reddio Sepolia L2 Rollup
|
32313
|
+
name: 'Reddio Testnet',
|
32314
|
+
title: 'Reddio Sepolia L2 Rollup Testnet',
|
32168
32315
|
chain: 'ETH',
|
32169
32316
|
rpc: [ 'https://reddio-dev.reddio.com' ],
|
32170
32317
|
faucets: [],
|
32171
|
-
nativeCurrency: { name: '
|
32318
|
+
nativeCurrency: { name: 'Reddio', symbol: 'RDO', decimals: 18 },
|
32172
32319
|
infoURL: 'https://www.reddio.com',
|
32173
32320
|
shortName: 'reddio-devnet',
|
32174
32321
|
chainId: 50341,
|
@@ -38455,7 +38602,21 @@ const chainArray = [
|
|
38455
38602
|
'https://rpc.helikon.io/hydradx',
|
38456
38603
|
'wss://rpc.helikon.io/hydradx',
|
38457
38604
|
'https://hydration.dotters.network',
|
38458
|
-
'wss://hydration.dotters.network'
|
38605
|
+
'wss://hydration.dotters.network',
|
38606
|
+
'https://hydration.ibp.network',
|
38607
|
+
'wss://hydration.ibp.network',
|
38608
|
+
'https://rpc.cay.hydration.cloud',
|
38609
|
+
'wss://rpc.cay.hydration.cloud',
|
38610
|
+
'https://rpc.parm.hydration.cloud',
|
38611
|
+
'wss://rpc.parm.hydration.cloud',
|
38612
|
+
'https://rpc.roach.hydration.cloud',
|
38613
|
+
'wss://rpc.roach.hydration.cloud',
|
38614
|
+
'https://rpc.zipp.hydration.cloud',
|
38615
|
+
'wss://rpc.zipp.hydration.cloud',
|
38616
|
+
'https://rpc.sin.hydration.cloud',
|
38617
|
+
'wss://rpc.sin.hydration.cloud',
|
38618
|
+
'https://rpc.coke.hydration.cloud',
|
38619
|
+
'wss://rpc.coke.hydration.cloud'
|
38459
38620
|
],
|
38460
38621
|
faucets: [],
|
38461
38622
|
nativeCurrency: { name: 'Wrapped ETH', symbol: 'WETH', decimals: 18 },
|
@@ -42543,6 +42704,27 @@ const chainArray = [
|
|
42543
42704
|
chainId: 2611555,
|
42544
42705
|
networkId: 2611555
|
42545
42706
|
},
|
42707
|
+
{
|
42708
|
+
name: 'COTI',
|
42709
|
+
chainId: 2632500,
|
42710
|
+
shortName: 'coti',
|
42711
|
+
chain: 'COTI',
|
42712
|
+
networkId: 2632500,
|
42713
|
+
nativeCurrency: { name: 'COTI', symbol: 'COTI', decimals: 18 },
|
42714
|
+
rpc: [ 'https://mainnet.coti.io/rpc' ],
|
42715
|
+
faucets: [],
|
42716
|
+
explorers: [
|
42717
|
+
{
|
42718
|
+
name: 'COTI Mainnet Explorer',
|
42719
|
+
url: 'https://mainnet.cotiscan.io',
|
42720
|
+
icon: 'blockscout',
|
42721
|
+
standard: 'EIP3091'
|
42722
|
+
}
|
42723
|
+
],
|
42724
|
+
infoURL: 'https://coti.io/',
|
42725
|
+
icon: 'coti',
|
42726
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ]
|
42727
|
+
},
|
42546
42728
|
{
|
42547
42729
|
name: 'Xterio Chain (ETH)',
|
42548
42730
|
chain: 'Xterio',
|
@@ -43076,7 +43258,10 @@ const chainArray = [
|
|
43076
43258
|
{
|
43077
43259
|
name: 'The Ting Blockchain Testnet Explorer',
|
43078
43260
|
chain: 'Ting',
|
43079
|
-
rpc: [
|
43261
|
+
rpc: [
|
43262
|
+
'https://testnet.tingchain.org',
|
43263
|
+
'https://public.0xrpc.com/6666689'
|
43264
|
+
],
|
43080
43265
|
faucets: [],
|
43081
43266
|
nativeCurrency: { name: 'Ton', symbol: 'Ton', decimals: 18 },
|
43082
43267
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
@@ -43557,7 +43742,7 @@ const chainArray = [
|
|
43557
43742
|
}
|
43558
43743
|
},
|
43559
43744
|
{
|
43560
|
-
name: 'Sepolia',
|
43745
|
+
name: 'Ethereum Sepolia',
|
43561
43746
|
title: 'Ethereum Testnet Sepolia',
|
43562
43747
|
chain: 'ETH',
|
43563
43748
|
rpc: [
|
@@ -44028,12 +44213,12 @@ const chainArray = [
|
|
44028
44213
|
{
|
44029
44214
|
name: 'Vcity Testnet',
|
44030
44215
|
chain: 'VCITY',
|
44031
|
-
rpc: [ '
|
44216
|
+
rpc: [ 'http://testnet-rpc.vcity.app' ],
|
44032
44217
|
faucets: [],
|
44033
|
-
nativeCurrency: { name: 'Testnet Vcity Token', symbol: '
|
44218
|
+
nativeCurrency: { name: 'Testnet Vcity Token', symbol: 'VCT', decimals: 18 },
|
44034
44219
|
features: [],
|
44035
44220
|
infoURL: 'https://vcity.app',
|
44036
|
-
shortName: '
|
44221
|
+
shortName: 'Vcitytestnet',
|
44037
44222
|
chainId: 20230825,
|
44038
44223
|
networkId: 20230825,
|
44039
44224
|
icon: 'vcity',
|
@@ -44123,6 +44308,27 @@ const chainArray = [
|
|
44123
44308
|
}
|
44124
44309
|
]
|
44125
44310
|
},
|
44311
|
+
{
|
44312
|
+
name: 'Vcitychain Mainnet',
|
44313
|
+
chain: 'Vcitychain',
|
44314
|
+
rpc: [ 'https://mainnet-rpc.vcity.app' ],
|
44315
|
+
faucets: [],
|
44316
|
+
nativeCurrency: { name: 'Vcity Coin', symbol: 'VCITY', decimals: 18 },
|
44317
|
+
features: [],
|
44318
|
+
infoURL: 'https://vcity.app',
|
44319
|
+
shortName: 'vcity',
|
44320
|
+
chainId: 20250825,
|
44321
|
+
networkId: 20250825,
|
44322
|
+
icon: 'vcitychain',
|
44323
|
+
explorers: [
|
44324
|
+
{
|
44325
|
+
name: 'Vcitychain Explorer',
|
44326
|
+
url: 'https://blockchain.vcity.app',
|
44327
|
+
icon: 'vcitychain',
|
44328
|
+
standard: 'none'
|
44329
|
+
}
|
44330
|
+
]
|
44331
|
+
},
|
44126
44332
|
{
|
44127
44333
|
name: 'ETP Mainnet',
|
44128
44334
|
chain: 'ETP',
|
@@ -46722,6 +46928,26 @@ const chainArray = [
|
|
46722
46928
|
}
|
46723
46929
|
]
|
46724
46930
|
},
|
46931
|
+
{
|
46932
|
+
name: 'Tron Shasta',
|
46933
|
+
chain: 'TRON',
|
46934
|
+
rpc: [ 'https://api.shasta.trongrid.io/jsonrpc' ],
|
46935
|
+
faucets: [],
|
46936
|
+
nativeCurrency: { name: 'Tron', symbol: 'TRX', decimals: 6 },
|
46937
|
+
infoURL: 'https://tron.network',
|
46938
|
+
shortName: 'tron-shasta',
|
46939
|
+
chainId: 2494104990,
|
46940
|
+
networkId: 2494104990,
|
46941
|
+
icon: 'tron',
|
46942
|
+
explorers: [
|
46943
|
+
{
|
46944
|
+
name: 'shasta tronscan',
|
46945
|
+
url: 'https://shasta.tronscan.org',
|
46946
|
+
icon: 'tron',
|
46947
|
+
standard: 'none'
|
46948
|
+
}
|
46949
|
+
]
|
46950
|
+
},
|
46725
46951
|
{
|
46726
46952
|
name: 'Ancient8 Testnet (deprecated)',
|
46727
46953
|
status: 'deprecated',
|