eth-chainlist 0.0.433 → 0.0.435
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 +204 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.435 (2024-06-23)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.434 ([e2a1fbf](https://github.com/poowf/eth-chainlist/commit/e2a1fbf7ab264f63ce67f86fb8092a3fac9c7ace))
|
9
|
+
* update chain data ([a631de4](https://github.com/poowf/eth-chainlist/commit/a631de44e89aa9654cf81a0e4ed23f39ce4bee87))
|
10
|
+
|
11
|
+
### 0.0.434 (2024-06-18)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.433 ([fca1e80](https://github.com/poowf/eth-chainlist/commit/fca1e80d2df9c1ef03213ba2f5cf956b4e5990bb))
|
17
|
+
* update chain data ([dc140ef](https://github.com/poowf/eth-chainlist/commit/dc140eff4e1940f88ad19a1f4137793f6fae1172))
|
18
|
+
|
3
19
|
### 0.0.433 (2024-06-17)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -903,8 +903,8 @@ const chainArray = [
|
|
903
903
|
networkId: 44,
|
904
904
|
explorers: [
|
905
905
|
{
|
906
|
-
name: '
|
907
|
-
url: 'https://crab.
|
906
|
+
name: 'blockscout',
|
907
|
+
url: 'https://crab-scan.darwinia.network',
|
908
908
|
standard: 'EIP3091'
|
909
909
|
}
|
910
910
|
]
|
@@ -5221,6 +5221,18 @@ const chainArray = [
|
|
5221
5221
|
}
|
5222
5222
|
]
|
5223
5223
|
},
|
5224
|
+
{
|
5225
|
+
name: 'Shape',
|
5226
|
+
chain: 'ETH',
|
5227
|
+
rpc: [],
|
5228
|
+
faucets: [],
|
5229
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
5230
|
+
infoURL: 'https://shape.us',
|
5231
|
+
shortName: 'shape',
|
5232
|
+
chainId: 360,
|
5233
|
+
networkId: 360,
|
5234
|
+
status: 'incubating'
|
5235
|
+
},
|
5224
5236
|
{
|
5225
5237
|
name: 'Theta Mainnet',
|
5226
5238
|
chain: 'Theta',
|
@@ -9185,6 +9197,29 @@ const chainArray = [
|
|
9185
9197
|
}
|
9186
9198
|
]
|
9187
9199
|
},
|
9200
|
+
{
|
9201
|
+
name: 'Cuckoo Chain',
|
9202
|
+
title: 'Cuckoo Chain',
|
9203
|
+
chain: 'CuckooAI',
|
9204
|
+
icon: 'cuckoo-ai',
|
9205
|
+
rpc: [
|
9206
|
+
'https://mainnet-rpc.cuckoo.network',
|
9207
|
+
'wss://mainnet-rpc.cuckoo.network'
|
9208
|
+
],
|
9209
|
+
faucets: [],
|
9210
|
+
nativeCurrency: { name: 'CuckooAI', symbol: 'CAI', decimals: 18 },
|
9211
|
+
infoURL: 'https://cuckoo.network',
|
9212
|
+
shortName: 'cai',
|
9213
|
+
chainId: 1200,
|
9214
|
+
networkId: 1200,
|
9215
|
+
explorers: [
|
9216
|
+
{
|
9217
|
+
name: 'Cuckoo Chain Explorer',
|
9218
|
+
url: 'https://mainnet-scan.cuckoo.network',
|
9219
|
+
standard: 'EIP3091'
|
9220
|
+
}
|
9221
|
+
]
|
9222
|
+
},
|
9188
9223
|
{
|
9189
9224
|
name: 'Evanesco Testnet',
|
9190
9225
|
chain: 'Evanesco Testnet',
|
@@ -11601,6 +11636,26 @@ const chainArray = [
|
|
11601
11636
|
}
|
11602
11637
|
]
|
11603
11638
|
},
|
11639
|
+
{
|
11640
|
+
name: 'Kyoto',
|
11641
|
+
chain: 'KYOTO',
|
11642
|
+
rpc: [ 'https://rpc.kyotochain.io' ],
|
11643
|
+
faucets: [],
|
11644
|
+
nativeCurrency: { name: 'Kyoto', symbol: 'KYOTO', decimals: 18 },
|
11645
|
+
features: [ { name: 'EIP155' } ],
|
11646
|
+
infoURL: 'https://kyotoprotocol.io',
|
11647
|
+
shortName: 'kyoto',
|
11648
|
+
chainId: 1997,
|
11649
|
+
networkId: 1997,
|
11650
|
+
slip44: 1,
|
11651
|
+
explorers: [
|
11652
|
+
{
|
11653
|
+
name: 'Kyotoscan',
|
11654
|
+
url: 'https://kyotoscan.io',
|
11655
|
+
standard: 'EIP3091'
|
11656
|
+
}
|
11657
|
+
]
|
11658
|
+
},
|
11604
11659
|
{
|
11605
11660
|
name: 'Kyoto Testnet',
|
11606
11661
|
chain: 'KYOTO',
|
@@ -13472,6 +13527,52 @@ const chainArray = [
|
|
13472
13527
|
}
|
13473
13528
|
]
|
13474
13529
|
},
|
13530
|
+
{
|
13531
|
+
name: 'AILayer Testnet',
|
13532
|
+
chain: 'AILayer',
|
13533
|
+
rpc: [
|
13534
|
+
'https://testnet-rpc.ailayer.xyz',
|
13535
|
+
'wss://testnet-rpc.ailayer.xyz'
|
13536
|
+
],
|
13537
|
+
faucets: [],
|
13538
|
+
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
13539
|
+
infoURL: 'https://ailayer.xyz/',
|
13540
|
+
shortName: 'ailayer-testnet',
|
13541
|
+
chainId: 2648,
|
13542
|
+
networkId: 2648,
|
13543
|
+
icon: 'ailayer',
|
13544
|
+
explorers: [
|
13545
|
+
{
|
13546
|
+
name: 'blockscout',
|
13547
|
+
url: 'https://testnet-explorer.ailayer.xyz',
|
13548
|
+
icon: 'ailayer',
|
13549
|
+
standard: 'EIP3091'
|
13550
|
+
}
|
13551
|
+
]
|
13552
|
+
},
|
13553
|
+
{
|
13554
|
+
name: 'AILayer Mainnet',
|
13555
|
+
chain: 'AILayer',
|
13556
|
+
rpc: [
|
13557
|
+
'https://mainnet-rpc.ailayer.xyz',
|
13558
|
+
'wss://mainnet-rpc.ailayer.xyz'
|
13559
|
+
],
|
13560
|
+
faucets: [],
|
13561
|
+
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
13562
|
+
infoURL: 'https://ailayer.xyz/',
|
13563
|
+
shortName: 'ailayer-mainnet',
|
13564
|
+
chainId: 2649,
|
13565
|
+
networkId: 2649,
|
13566
|
+
icon: 'ailayer',
|
13567
|
+
explorers: [
|
13568
|
+
{
|
13569
|
+
name: 'blockscout',
|
13570
|
+
url: 'https://mainnet-explorer.ailayer.xyz',
|
13571
|
+
icon: 'ailayer',
|
13572
|
+
standard: 'EIP3091'
|
13573
|
+
}
|
13574
|
+
]
|
13575
|
+
},
|
13475
13576
|
{
|
13476
13577
|
name: 'APEX',
|
13477
13578
|
status: 'incubating',
|
@@ -14177,6 +14278,27 @@ const chainArray = [
|
|
14177
14278
|
}
|
14178
14279
|
]
|
14179
14280
|
},
|
14281
|
+
{
|
14282
|
+
name: 'GTCSCAN',
|
14283
|
+
chain: 'GTC',
|
14284
|
+
icon: 'gtc',
|
14285
|
+
rpc: [ 'https://gtc-dataseed.gtcscan.io/' ],
|
14286
|
+
faucets: [],
|
14287
|
+
nativeCurrency: { name: 'GTC', symbol: 'GTC', decimals: 18 },
|
14288
|
+
infoURL: 'https://gtcscan.io/',
|
14289
|
+
shortName: 'gtc',
|
14290
|
+
chainId: 3490,
|
14291
|
+
networkId: 3490,
|
14292
|
+
slip44: 1,
|
14293
|
+
explorers: [
|
14294
|
+
{
|
14295
|
+
name: 'GTCScan Explorer',
|
14296
|
+
url: 'https://gtcscan.io',
|
14297
|
+
standard: 'none',
|
14298
|
+
icon: 'gtc'
|
14299
|
+
}
|
14300
|
+
]
|
14301
|
+
},
|
14180
14302
|
{
|
14181
14303
|
name: 'Paribu Net Testnet',
|
14182
14304
|
chain: 'PRB',
|
@@ -20265,6 +20387,24 @@ const chainArray = [
|
|
20265
20387
|
}
|
20266
20388
|
]
|
20267
20389
|
},
|
20390
|
+
{
|
20391
|
+
name: 'Artela Testnet',
|
20392
|
+
chain: 'Artela',
|
20393
|
+
rpc: [ 'https://betanet-rpc1.artela.network' ],
|
20394
|
+
faucets: [],
|
20395
|
+
nativeCurrency: { name: 'ART', symbol: 'ART', decimals: 18 },
|
20396
|
+
infoURL: 'https://artela.network/',
|
20397
|
+
shortName: 'Artela',
|
20398
|
+
chainId: 11822,
|
20399
|
+
networkId: 11822,
|
20400
|
+
explorers: [
|
20401
|
+
{
|
20402
|
+
name: 'ArtelaScan',
|
20403
|
+
url: 'https://betanet-scan.artela.network',
|
20404
|
+
standard: 'EIP3091'
|
20405
|
+
}
|
20406
|
+
]
|
20407
|
+
},
|
20268
20408
|
{
|
20269
20409
|
status: 'deprecated',
|
20270
20410
|
name: 'Santiment Intelligence Network DEPRECATED',
|
@@ -23034,6 +23174,25 @@ const chainArray = [
|
|
23034
23174
|
}
|
23035
23175
|
]
|
23036
23176
|
},
|
23177
|
+
{
|
23178
|
+
name: 'Zilliqa 2 EVM proto-testnet',
|
23179
|
+
chain: 'ZIL',
|
23180
|
+
rpc: [ 'https://api.zq2-prototestnet.zilliqa.com' ],
|
23181
|
+
faucets: [ 'https://faucet.zq2-prototestnet.zilliqa.com' ],
|
23182
|
+
nativeCurrency: { name: 'Zilliqa', symbol: 'ZIL', decimals: 18 },
|
23183
|
+
infoURL: 'https://www.zilliqa.com/',
|
23184
|
+
shortName: 'zq2-proto-testnet',
|
23185
|
+
chainId: 33103,
|
23186
|
+
networkId: 33103,
|
23187
|
+
icon: 'zilliqa',
|
23188
|
+
explorers: [
|
23189
|
+
{
|
23190
|
+
name: 'Zilliqa 2 EVM proto-testnet explorer',
|
23191
|
+
url: 'https://explorer.zq2-prototestnet.zilliqa.com',
|
23192
|
+
standard: 'EIP3091'
|
23193
|
+
}
|
23194
|
+
]
|
23195
|
+
},
|
23037
23196
|
{
|
23038
23197
|
name: 'Entangle Testnet',
|
23039
23198
|
chain: 'NGL',
|
@@ -25800,6 +25959,29 @@ const chainArray = [
|
|
25800
25959
|
}
|
25801
25960
|
]
|
25802
25961
|
},
|
25962
|
+
{
|
25963
|
+
name: 'Berachain bArtio',
|
25964
|
+
chain: 'Berachain bArtio',
|
25965
|
+
rpc: [
|
25966
|
+
'https://bartio.rpc.berachain.com',
|
25967
|
+
'https://bera-testnet.nodeinfra.com'
|
25968
|
+
],
|
25969
|
+
faucets: [ 'https://bartio.faucet.berachain.com' ],
|
25970
|
+
nativeCurrency: { name: 'BERA Token', symbol: 'BERA', decimals: 18 },
|
25971
|
+
infoURL: 'https://www.berachain.com',
|
25972
|
+
shortName: 'berachainbArtio',
|
25973
|
+
chainId: 80084,
|
25974
|
+
networkId: 80084,
|
25975
|
+
icon: 'berachain',
|
25976
|
+
explorers: [
|
25977
|
+
{
|
25978
|
+
name: 'Beratrail',
|
25979
|
+
url: 'https://bartio.beratrail.io',
|
25980
|
+
icon: 'berachain',
|
25981
|
+
standard: 'none'
|
25982
|
+
}
|
25983
|
+
]
|
25984
|
+
},
|
25803
25985
|
{
|
25804
25986
|
name: 'Berachain Artio',
|
25805
25987
|
chain: 'Berachain Artio',
|
@@ -29292,6 +29474,26 @@ const chainArray = [
|
|
29292
29474
|
}
|
29293
29475
|
]
|
29294
29476
|
},
|
29477
|
+
{
|
29478
|
+
name: 'Autonomys Testnet Nova Domain',
|
29479
|
+
chain: 'TATC',
|
29480
|
+
rpc: [ 'https://nova-0.gemini-3h.subspace.network/ws' ],
|
29481
|
+
faucets: [],
|
29482
|
+
nativeCurrency: { name: 'Test Auto Coin', symbol: 'TATC', decimals: 18 },
|
29483
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
29484
|
+
infoURL: 'https://www.autonomys.net',
|
29485
|
+
shortName: 'ATN',
|
29486
|
+
chainId: 490000,
|
29487
|
+
networkId: 490000,
|
29488
|
+
explorers: [
|
29489
|
+
{
|
29490
|
+
name: 'astral',
|
29491
|
+
url: 'https://nova.subspace.network',
|
29492
|
+
icon: 'blockscout',
|
29493
|
+
standard: 'EIP3091'
|
29494
|
+
}
|
29495
|
+
]
|
29496
|
+
},
|
29295
29497
|
{
|
29296
29498
|
name: 'Playdapp Network',
|
29297
29499
|
chain: 'PDA',
|