eth-chainlist 0.0.386 → 0.0.388
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 +249 -17
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.388 (2024-04-27)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.387 ([f69276f](https://github.com/poowf/eth-chainlist/commit/f69276fca2693a3f736c677c63b4d2e5c7cce2e0))
|
9
|
+
* update chain data ([3836b6f](https://github.com/poowf/eth-chainlist/commit/3836b6f05187b547907e8daa14960c00528a18e8))
|
10
|
+
|
11
|
+
### 0.0.387 (2024-04-25)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.386 ([a1f0b02](https://github.com/poowf/eth-chainlist/commit/a1f0b025fe058734977a9114fb3819e88d414f3c))
|
17
|
+
* update chain data ([6188239](https://github.com/poowf/eth-chainlist/commit/6188239dc1e9d147e7a7791ca7a2d65d5da9beac))
|
18
|
+
|
3
19
|
### 0.0.386 (2024-04-24)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -3840,8 +3840,10 @@ const chainArray = [
|
|
3840
3840
|
title: 'B2 Mainnet',
|
3841
3841
|
chain: 'B2',
|
3842
3842
|
rpc: [
|
3843
|
+
'https://mainnet.b2-rpc.com',
|
3843
3844
|
'https://rpc.bsquared.network',
|
3844
|
-
'https://b2-mainnet.alt.technology'
|
3845
|
+
'https://b2-mainnet.alt.technology',
|
3846
|
+
'https://b2-mainnet-public.s.chainbase.com'
|
3845
3847
|
],
|
3846
3848
|
faucets: [],
|
3847
3849
|
nativeCurrency: { name: 'Bitcoin', symbol: 'BTC', decimals: 18 },
|
@@ -4621,6 +4623,32 @@ const chainArray = [
|
|
4621
4623
|
}
|
4622
4624
|
]
|
4623
4625
|
},
|
4626
|
+
{
|
4627
|
+
name: 'zkCandy Sepolia Testnet',
|
4628
|
+
chain: 'ETH',
|
4629
|
+
rpc: [ 'https://sepolia.rpc.zkcandy.io' ],
|
4630
|
+
faucets: [],
|
4631
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
4632
|
+
infoURL: 'https://zkcandy.io/',
|
4633
|
+
shortName: 'zkcandy-sepolia',
|
4634
|
+
chainId: 302,
|
4635
|
+
networkId: 302,
|
4636
|
+
icon: 'zkcandy',
|
4637
|
+
explorers: [
|
4638
|
+
{
|
4639
|
+
name: 'zkCandy Block Explorer',
|
4640
|
+
url: 'https://sepolia.explorer.zkcandy.io',
|
4641
|
+
icon: 'zkcandy',
|
4642
|
+
standard: 'EIP3091'
|
4643
|
+
}
|
4644
|
+
],
|
4645
|
+
parent: {
|
4646
|
+
type: 'L2',
|
4647
|
+
chain: 'eip155-1',
|
4648
|
+
bridges: [ { url: 'https://sepolia.bridge.zkcandy.io/' } ]
|
4649
|
+
},
|
4650
|
+
redFlags: [ 'reusedChainId' ]
|
4651
|
+
},
|
4624
4652
|
{
|
4625
4653
|
name: 'Neurochain Testnet',
|
4626
4654
|
chain: 'NCN',
|
@@ -8183,7 +8211,7 @@ const chainArray = [
|
|
8183
8211
|
'https://evm-toolkit.evm.testnet.shimmer.network',
|
8184
8212
|
'https://evm-faucet.testnet.shimmer.network'
|
8185
8213
|
],
|
8186
|
-
nativeCurrency: { name: 'SMR', symbol: 'SMR', decimals:
|
8214
|
+
nativeCurrency: { name: 'SMR', symbol: 'SMR', decimals: 18 },
|
8187
8215
|
infoURL: 'https://shimmer.network',
|
8188
8216
|
shortName: 'shimmerevm-testnet',
|
8189
8217
|
chainId: 1073,
|
@@ -8208,7 +8236,14 @@ const chainArray = [
|
|
8208
8236
|
infoURL: 'https://www.iota.org',
|
8209
8237
|
shortName: 'iotaevm-testnet',
|
8210
8238
|
chainId: 1075,
|
8211
|
-
networkId: 1075
|
8239
|
+
networkId: 1075,
|
8240
|
+
explorers: [
|
8241
|
+
{
|
8242
|
+
name: 'explorer',
|
8243
|
+
url: 'https://explorer.evm.testnet.iotaledger.net',
|
8244
|
+
standard: 'EIP3091'
|
8245
|
+
}
|
8246
|
+
]
|
8212
8247
|
},
|
8213
8248
|
{
|
8214
8249
|
name: 'Mintara Testnet',
|
@@ -8455,11 +8490,11 @@ const chainArray = [
|
|
8455
8490
|
]
|
8456
8491
|
},
|
8457
8492
|
{
|
8458
|
-
name: 'B2 Hub
|
8493
|
+
name: 'B2 Hub Testnet',
|
8459
8494
|
chain: 'BSQ',
|
8460
|
-
rpc: [ 'https://
|
8495
|
+
rpc: [ 'https://testnet-hub-rpc.bsquared.network' ],
|
8461
8496
|
faucets: [],
|
8462
|
-
nativeCurrency: { name: 'BSquared Token', symbol: '
|
8497
|
+
nativeCurrency: { name: 'BSquared Token', symbol: 'B2', decimals: 18 },
|
8463
8498
|
infoURL: 'https://www.bsquared.network',
|
8464
8499
|
shortName: 'B2Hub-testnet',
|
8465
8500
|
chainId: 1113,
|
@@ -8468,7 +8503,7 @@ const chainArray = [
|
|
8468
8503
|
explorers: [
|
8469
8504
|
{
|
8470
8505
|
name: 'B2 Hub Habitat Testnet Explorer',
|
8471
|
-
url: 'https://
|
8506
|
+
url: 'https://testnet-hub-explorer.bsquared.network',
|
8472
8507
|
icon: 'bsquare',
|
8473
8508
|
standard: 'EIP3091'
|
8474
8509
|
}
|
@@ -8548,14 +8583,10 @@ const chainArray = [
|
|
8548
8583
|
]
|
8549
8584
|
},
|
8550
8585
|
{
|
8551
|
-
name: 'B2
|
8552
|
-
title: 'B2
|
8586
|
+
name: 'B2 Testnet',
|
8587
|
+
title: 'B2 Testnet',
|
8553
8588
|
chain: 'Habitat',
|
8554
|
-
rpc: [
|
8555
|
-
'https://b2habitat-testnet.alt.technology',
|
8556
|
-
'https://habitat-rpc.bsquared.network',
|
8557
|
-
'https://habitat-rpc-public.bsquared.network'
|
8558
|
-
],
|
8589
|
+
rpc: [ 'https://b2-testnet.alt.technology' ],
|
8559
8590
|
faucets: [],
|
8560
8591
|
nativeCurrency: { name: 'Bitcoin', symbol: 'BTC', decimals: 18 },
|
8561
8592
|
infoURL: 'https://www.bsquared.network',
|
@@ -8566,7 +8597,7 @@ const chainArray = [
|
|
8566
8597
|
explorers: [
|
8567
8598
|
{
|
8568
8599
|
name: 'blockscout',
|
8569
|
-
url: 'https://
|
8600
|
+
url: 'https://testnet-explorer.bsquared.network',
|
8570
8601
|
icon: 'bsquare',
|
8571
8602
|
standard: 'EIP3091'
|
8572
8603
|
}
|
@@ -12660,6 +12691,32 @@ const chainArray = [
|
|
12660
12691
|
}
|
12661
12692
|
]
|
12662
12693
|
},
|
12694
|
+
{
|
12695
|
+
name: 'Nanon',
|
12696
|
+
title: 'Nanon Rollup',
|
12697
|
+
chain: 'ETH',
|
12698
|
+
rpc: [ 'https://rpc.nanon.network' ],
|
12699
|
+
faucets: [],
|
12700
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
12701
|
+
infoURL: 'https://www.nanon.network',
|
12702
|
+
shortName: 'Nanon',
|
12703
|
+
chainId: 2748,
|
12704
|
+
networkId: 2748,
|
12705
|
+
slip44: 1,
|
12706
|
+
icon: 'nanon',
|
12707
|
+
explorers: [
|
12708
|
+
{
|
12709
|
+
name: 'Nanon Rollup Explorer',
|
12710
|
+
url: 'https://explorer.nanon.network',
|
12711
|
+
standard: 'EIP3091'
|
12712
|
+
}
|
12713
|
+
],
|
12714
|
+
parent: {
|
12715
|
+
type: 'L2',
|
12716
|
+
chain: 'eip155-1',
|
12717
|
+
bridges: [ { url: 'https://bridge.nanon.network' } ]
|
12718
|
+
}
|
12719
|
+
},
|
12663
12720
|
{
|
12664
12721
|
name: 'Morph Holesky',
|
12665
12722
|
title: 'Morph Holesky Testnet',
|
@@ -14243,6 +14300,27 @@ const chainArray = [
|
|
14243
14300
|
}
|
14244
14301
|
]
|
14245
14302
|
},
|
14303
|
+
{
|
14304
|
+
name: 'VERY Mainnet',
|
14305
|
+
title: 'VERY Mainnet',
|
14306
|
+
chain: 'VERY Mainnet',
|
14307
|
+
icon: 'very',
|
14308
|
+
rpc: [ 'https://rpc.verylabs.io' ],
|
14309
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
14310
|
+
faucets: [],
|
14311
|
+
nativeCurrency: { name: 'VERY', symbol: 'VERY', decimals: 18 },
|
14312
|
+
infoURL: 'https://www.verylabs.io/',
|
14313
|
+
shortName: 'very',
|
14314
|
+
chainId: 4613,
|
14315
|
+
networkId: 4613,
|
14316
|
+
explorers: [
|
14317
|
+
{
|
14318
|
+
name: 'VERY explorer',
|
14319
|
+
url: 'https://www.veryscan.io',
|
14320
|
+
standard: 'none'
|
14321
|
+
}
|
14322
|
+
]
|
14323
|
+
},
|
14246
14324
|
{
|
14247
14325
|
name: 'Gold Chain',
|
14248
14326
|
title: 'Gold Chain',
|
@@ -14845,6 +14923,30 @@ const chainArray = [
|
|
14845
14923
|
}
|
14846
14924
|
]
|
14847
14925
|
},
|
14926
|
+
{
|
14927
|
+
name: 'edeXa Mainnet',
|
14928
|
+
chain: 'edeXa Network',
|
14929
|
+
rpc: [
|
14930
|
+
'https://mainnet.edexa.com/rpc',
|
14931
|
+
'https://io-dataseed1.mainnet.edexa.io-market.com/rpc'
|
14932
|
+
],
|
14933
|
+
faucets: [],
|
14934
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
14935
|
+
nativeCurrency: { name: 'EDEXA', symbol: 'EDX', decimals: 18 },
|
14936
|
+
infoURL: 'https://edexa.network/',
|
14937
|
+
shortName: 'edeXa',
|
14938
|
+
chainId: 5424,
|
14939
|
+
networkId: 5424,
|
14940
|
+
slip44: 1,
|
14941
|
+
icon: 'edexa',
|
14942
|
+
explorers: [
|
14943
|
+
{
|
14944
|
+
name: 'edexa-mainnet',
|
14945
|
+
url: 'https://explorer.edexa.network',
|
14946
|
+
standard: 'EIP3091'
|
14947
|
+
}
|
14948
|
+
]
|
14949
|
+
},
|
14848
14950
|
{
|
14849
14951
|
name: 'Egochain',
|
14850
14952
|
chainId: 5439,
|
@@ -15370,6 +15472,27 @@ const chainArray = [
|
|
15370
15472
|
}
|
15371
15473
|
]
|
15372
15474
|
},
|
15475
|
+
{
|
15476
|
+
name: 'Aura Euphoria Testnet',
|
15477
|
+
chain: 'Aura',
|
15478
|
+
rpc: [ 'https://jsonrpc.euphoria.aura.network' ],
|
15479
|
+
faucets: [],
|
15480
|
+
nativeCurrency: { name: 'test-EAura', symbol: 'eAura', decimals: 18 },
|
15481
|
+
infoURL: 'https://aura.network',
|
15482
|
+
shortName: 'eaura',
|
15483
|
+
chainId: 6321,
|
15484
|
+
networkId: 6321,
|
15485
|
+
slip44: 1,
|
15486
|
+
icon: 'aura',
|
15487
|
+
explorers: [
|
15488
|
+
{
|
15489
|
+
name: 'Aurascan Explorer',
|
15490
|
+
url: 'https://euphoria.aurascan.io',
|
15491
|
+
standard: 'none',
|
15492
|
+
icon: 'aura'
|
15493
|
+
}
|
15494
|
+
]
|
15495
|
+
},
|
15373
15496
|
{
|
15374
15497
|
name: 'Digit Soul Smart Chain',
|
15375
15498
|
chain: 'DGS',
|
@@ -16922,7 +17045,10 @@ const chainArray = [
|
|
16922
17045
|
name: 'IOTA EVM',
|
16923
17046
|
title: 'IOTA EVM',
|
16924
17047
|
chain: 'IOTA EVM',
|
16925
|
-
rpc: [
|
17048
|
+
rpc: [
|
17049
|
+
'https://json-rpc.evm.iotaledger.net',
|
17050
|
+
'https://ws.json-rpc.evm.iotaledger.net'
|
17051
|
+
],
|
16926
17052
|
faucets: [],
|
16927
17053
|
nativeCurrency: { name: 'IOTA', symbol: 'IOTA', decimals: 18 },
|
16928
17054
|
infoURL: 'https://www.iota.org',
|
@@ -16933,7 +17059,7 @@ const chainArray = [
|
|
16933
17059
|
explorers: [
|
16934
17060
|
{
|
16935
17061
|
name: 'explorer',
|
16936
|
-
url: 'https://
|
17062
|
+
url: 'https://explorer.evm.iota.org',
|
16937
17063
|
icon: 'iotaevm',
|
16938
17064
|
standard: 'EIP3091'
|
16939
17065
|
}
|
@@ -20262,6 +20388,53 @@ const chainArray = [
|
|
20262
20388
|
}
|
20263
20389
|
]
|
20264
20390
|
},
|
20391
|
+
{
|
20392
|
+
name: 'Nanon Sepolia',
|
20393
|
+
title: 'Nanon Sepolia Rollup Testnet',
|
20394
|
+
chain: 'ETH',
|
20395
|
+
rpc: [ 'https://sepolia-rpc.nanon.network' ],
|
20396
|
+
faucets: [],
|
20397
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
20398
|
+
infoURL: 'https://www.nanon.network',
|
20399
|
+
shortName: 'Nanon-Testnet',
|
20400
|
+
chainId: 27483,
|
20401
|
+
networkId: 27483,
|
20402
|
+
slip44: 1,
|
20403
|
+
icon: 'nanon',
|
20404
|
+
explorers: [
|
20405
|
+
{
|
20406
|
+
name: 'Nanon Sepolia Rollup Testnet Explorer',
|
20407
|
+
url: 'https://sepolia-explorer.nanon.network',
|
20408
|
+
standard: 'EIP3091'
|
20409
|
+
}
|
20410
|
+
],
|
20411
|
+
parent: {
|
20412
|
+
type: 'L2',
|
20413
|
+
chain: 'eip155-11155111',
|
20414
|
+
bridges: [ { url: 'https://sepolia-bridge.nanon.network' } ]
|
20415
|
+
}
|
20416
|
+
},
|
20417
|
+
{
|
20418
|
+
name: 'Vizing Testnet',
|
20419
|
+
title: 'Vizing Testnet',
|
20420
|
+
chain: 'Vizing Testnet',
|
20421
|
+
rpc: [ 'https://rpc-sepolia.vizing.com' ],
|
20422
|
+
faucets: [],
|
20423
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
20424
|
+
infoURL: 'https://vizing.com',
|
20425
|
+
shortName: 'Vizing-Testnet',
|
20426
|
+
chainId: 28516,
|
20427
|
+
networkId: 28516,
|
20428
|
+
icon: 'vizing',
|
20429
|
+
explorers: [
|
20430
|
+
{
|
20431
|
+
name: 'blockscout',
|
20432
|
+
url: 'https://explorer-sepolia.vizing.com',
|
20433
|
+
icon: 'vizing',
|
20434
|
+
standard: 'EIP3091'
|
20435
|
+
}
|
20436
|
+
]
|
20437
|
+
},
|
20265
20438
|
{
|
20266
20439
|
name: 'Vizing Mainnet',
|
20267
20440
|
title: 'Vizing Mainnet',
|
@@ -21853,6 +22026,26 @@ const chainArray = [
|
|
21853
22026
|
}
|
21854
22027
|
]
|
21855
22028
|
},
|
22029
|
+
{
|
22030
|
+
name: 'Lambda Chain Mainnet',
|
22031
|
+
chain: 'Lambda Chain',
|
22032
|
+
rpc: [ 'https://nrpc.lambda.im/' ],
|
22033
|
+
faucets: [],
|
22034
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
22035
|
+
infoURL: 'https://lambda.im',
|
22036
|
+
shortName: 'lambda',
|
22037
|
+
chainId: 56026,
|
22038
|
+
networkId: 56026,
|
22039
|
+
slip44: 1,
|
22040
|
+
icon: 'lambda-chain',
|
22041
|
+
explorers: [
|
22042
|
+
{
|
22043
|
+
name: 'Lambda Chain Mainnet Explorer',
|
22044
|
+
url: 'https://scan.lambda.im',
|
22045
|
+
standard: 'EIP3091'
|
22046
|
+
}
|
22047
|
+
]
|
22048
|
+
},
|
21856
22049
|
{
|
21857
22050
|
name: 'Boba BNB Mainnet',
|
21858
22051
|
chain: 'Boba BNB Mainnet',
|
@@ -27580,6 +27773,25 @@ const chainArray = [
|
|
27580
27773
|
}
|
27581
27774
|
]
|
27582
27775
|
},
|
27776
|
+
{
|
27777
|
+
name: 'Reactive Network Testnet Kopli',
|
27778
|
+
chain: 'REACT',
|
27779
|
+
rpc: [ 'https://kopli-rpc.reactive.network' ],
|
27780
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
27781
|
+
faucets: [],
|
27782
|
+
nativeCurrency: { name: 'React', symbol: 'REACT', decimals: 18 },
|
27783
|
+
infoURL: 'https://reactive.network',
|
27784
|
+
shortName: 'react',
|
27785
|
+
chainId: 5318008,
|
27786
|
+
networkId: 5318008,
|
27787
|
+
explorers: [
|
27788
|
+
{
|
27789
|
+
name: 'reactscan',
|
27790
|
+
url: 'https://kopli.reactscan.net',
|
27791
|
+
standard: 'none'
|
27792
|
+
}
|
27793
|
+
]
|
27794
|
+
},
|
27583
27795
|
{
|
27584
27796
|
name: 'Imversed Mainnet',
|
27585
27797
|
chain: 'Imversed',
|
@@ -28086,6 +28298,26 @@ const chainArray = [
|
|
28086
28298
|
}
|
28087
28299
|
]
|
28088
28300
|
},
|
28301
|
+
{
|
28302
|
+
name: 'Lambda Chain Testnet',
|
28303
|
+
chain: 'Lambda Chain',
|
28304
|
+
rpc: [ 'https://testnrpc.lambda.im/' ],
|
28305
|
+
faucets: [],
|
28306
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
28307
|
+
infoURL: 'https://lambda.im',
|
28308
|
+
shortName: 'tlambda',
|
28309
|
+
chainId: 17000920,
|
28310
|
+
networkId: 17000920,
|
28311
|
+
slip44: 1,
|
28312
|
+
icon: 'lambda-chain',
|
28313
|
+
explorers: [
|
28314
|
+
{
|
28315
|
+
name: 'Lambda Chain Testnet Explorer',
|
28316
|
+
url: 'https://testscan.lambda.im',
|
28317
|
+
standard: 'EIP3091'
|
28318
|
+
}
|
28319
|
+
]
|
28320
|
+
},
|
28089
28321
|
{
|
28090
28322
|
name: 'IOLite',
|
28091
28323
|
chain: 'ILT',
|