eth-chainlist 0.0.181 → 0.0.182
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 +8 -0
- package/data/chain.js +90 -14
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.182 (2023-07-12)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.181 ([b6f7217](https://github.com/poowf/eth-chainlist/commit/b6f7217ef06aa4a4c15a5485393a1140b9b4d6b0))
|
9
|
+
* update chain data ([9990aa0](https://github.com/poowf/eth-chainlist/commit/9990aa082245f3ac55c1ea615be5b88623432d5a))
|
10
|
+
|
3
11
|
### 0.0.181 (2023-07-11)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -3322,7 +3322,14 @@ const chainArray = [
|
|
3322
3322
|
{
|
3323
3323
|
name: 'Boba Network',
|
3324
3324
|
chain: 'ETH',
|
3325
|
-
rpc: [
|
3325
|
+
rpc: [
|
3326
|
+
'https://mainnet.boba.network',
|
3327
|
+
'https://replica.boba.network',
|
3328
|
+
'http://boba-ethereum.gateway.tenderly.co',
|
3329
|
+
'http://gateway.tenderly.co/public/boba-ethereum',
|
3330
|
+
'wss://boba-ethereum.gateway.tenderly.co/',
|
3331
|
+
'wss://gateway.tenderly.co/public/boba-ethereum'
|
3332
|
+
],
|
3326
3333
|
faucets: [],
|
3327
3334
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
3328
3335
|
infoURL: 'https://boba.network',
|
@@ -5641,6 +5648,30 @@ const chainArray = [
|
|
5641
5648
|
}
|
5642
5649
|
]
|
5643
5650
|
},
|
5651
|
+
{
|
5652
|
+
name: 'ShimmerEVM Testnet Deprecated',
|
5653
|
+
title: 'ShimmerEVM Testnet Deprecated',
|
5654
|
+
chain: 'ShimmerEVM',
|
5655
|
+
icon: 'shimmerevm',
|
5656
|
+
rpc: [],
|
5657
|
+
faucets: [
|
5658
|
+
'https://evm-toolkit.evm.testnet.shimmer.network',
|
5659
|
+
'https://evm-faucet.testnet.shimmer.network'
|
5660
|
+
],
|
5661
|
+
nativeCurrency: { name: 'SMR', symbol: 'SMR', decimals: 18 },
|
5662
|
+
infoURL: 'https://shimmer.network',
|
5663
|
+
shortName: 'shimmerevm-testnet-deprecated',
|
5664
|
+
chainId: 1071,
|
5665
|
+
networkId: 1071,
|
5666
|
+
explorers: [
|
5667
|
+
{
|
5668
|
+
name: 'explorer',
|
5669
|
+
url: 'https://explorer.evm.testnet.shimmer.network',
|
5670
|
+
standard: 'EIP3091'
|
5671
|
+
}
|
5672
|
+
],
|
5673
|
+
status: 'deprecated'
|
5674
|
+
},
|
5644
5675
|
{
|
5645
5676
|
name: 'ShimmerEVM Testnet',
|
5646
5677
|
title: 'ShimmerEVM Testnet',
|
@@ -5651,11 +5682,11 @@ const chainArray = [
|
|
5651
5682
|
'https://evm-toolkit.evm.testnet.shimmer.network',
|
5652
5683
|
'https://evm-faucet.testnet.shimmer.network'
|
5653
5684
|
],
|
5654
|
-
nativeCurrency: { name: 'SMR', symbol: 'SMR', decimals:
|
5685
|
+
nativeCurrency: { name: 'SMR', symbol: 'SMR', decimals: 6 },
|
5655
5686
|
infoURL: 'https://shimmer.network',
|
5656
5687
|
shortName: 'shimmerevm-testnet',
|
5657
|
-
chainId:
|
5658
|
-
networkId:
|
5688
|
+
chainId: 1072,
|
5689
|
+
networkId: 1072,
|
5659
5690
|
explorers: [
|
5660
5691
|
{
|
5661
5692
|
name: 'explorer',
|
@@ -8493,11 +8524,14 @@ const chainArray = [
|
|
8493
8524
|
{
|
8494
8525
|
name: 'Boba Network Goerli Testnet',
|
8495
8526
|
chain: 'ETH',
|
8496
|
-
rpc: [
|
8527
|
+
rpc: [
|
8528
|
+
'https://goerli.boba.network/',
|
8529
|
+
'wss://wss.goerli.boba.network/'
|
8530
|
+
],
|
8497
8531
|
faucets: [],
|
8498
8532
|
nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
|
8499
8533
|
infoURL: 'https://boba.network',
|
8500
|
-
shortName: '
|
8534
|
+
shortName: 'BobaGoerli',
|
8501
8535
|
chainId: 2888,
|
8502
8536
|
networkId: 2888,
|
8503
8537
|
explorers: [
|
@@ -8510,7 +8544,7 @@ const chainArray = [
|
|
8510
8544
|
parent: {
|
8511
8545
|
type: 'L2',
|
8512
8546
|
chain: 'eip155-5',
|
8513
|
-
bridges: [ { url: 'https://gateway.
|
8547
|
+
bridges: [ { url: 'https://gateway.boba.network' } ]
|
8514
8548
|
}
|
8515
8549
|
},
|
8516
8550
|
{
|
@@ -9383,8 +9417,7 @@ const chainArray = [
|
|
9383
9417
|
rpc: [
|
9384
9418
|
'https://testnet.avax.boba.network',
|
9385
9419
|
'wss://wss.testnet.avax.boba.network',
|
9386
|
-
'https://replica.testnet.avax.boba.network'
|
9387
|
-
'wss://replica-wss.testnet.avax.boba.network'
|
9420
|
+
'https://replica.testnet.avax.boba.network'
|
9388
9421
|
],
|
9389
9422
|
faucets: [],
|
9390
9423
|
nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 },
|
@@ -9398,7 +9431,12 @@ const chainArray = [
|
|
9398
9431
|
url: 'https://blockexplorer.testnet.avax.boba.network',
|
9399
9432
|
standard: 'none'
|
9400
9433
|
}
|
9401
|
-
]
|
9434
|
+
],
|
9435
|
+
parent: {
|
9436
|
+
type: 'L2',
|
9437
|
+
chain: 'eip155-5',
|
9438
|
+
bridges: [ { url: 'https://gateway.boba.network' } ]
|
9439
|
+
}
|
9402
9440
|
},
|
9403
9441
|
{
|
9404
9442
|
name: 'Htmlcoin Mainnet',
|
@@ -11337,7 +11375,12 @@ const chainArray = [
|
|
11337
11375
|
url: 'https://blockexplorer.testnet.bnb.boba.network',
|
11338
11376
|
standard: 'none'
|
11339
11377
|
}
|
11340
|
-
]
|
11378
|
+
],
|
11379
|
+
parent: {
|
11380
|
+
type: 'L2',
|
11381
|
+
chain: 'eip155-5',
|
11382
|
+
bridges: [ { url: 'https://gateway.boba.network' } ]
|
11383
|
+
}
|
11341
11384
|
},
|
11342
11385
|
{
|
11343
11386
|
name: 'MainnetZ Testnet',
|
@@ -13619,9 +13662,11 @@ const chainArray = [
|
|
13619
13662
|
chain: 'Boba BNB Mainnet',
|
13620
13663
|
rpc: [
|
13621
13664
|
'https://bnb.boba.network',
|
13622
|
-
'
|
13665
|
+
'http://boba-bnb.gateway.tenderly.co/',
|
13666
|
+
'http://gateway.tenderly.co/public/boba-bnb',
|
13623
13667
|
'https://replica.bnb.boba.network',
|
13624
|
-
'wss://
|
13668
|
+
'wss://boba-bnb.gateway.tenderly.co/',
|
13669
|
+
'wss://gateway.tenderly.co/public/boba-bnb'
|
13625
13670
|
],
|
13626
13671
|
faucets: [],
|
13627
13672
|
nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 },
|
@@ -13635,7 +13680,12 @@ const chainArray = [
|
|
13635
13680
|
url: 'https://blockexplorer.bnb.boba.network',
|
13636
13681
|
standard: 'none'
|
13637
13682
|
}
|
13638
|
-
]
|
13683
|
+
],
|
13684
|
+
parent: {
|
13685
|
+
type: 'L2',
|
13686
|
+
chain: 'eip155-5',
|
13687
|
+
bridges: [ { url: 'https://gateway.boba.network' } ]
|
13688
|
+
}
|
13639
13689
|
},
|
13640
13690
|
{
|
13641
13691
|
name: 'Rollux Testnet',
|
@@ -13659,6 +13709,32 @@ const chainArray = [
|
|
13659
13709
|
}
|
13660
13710
|
]
|
13661
13711
|
},
|
13712
|
+
{
|
13713
|
+
name: 'Sepolia PGN (Public Goods Network)',
|
13714
|
+
chain: 'ETH',
|
13715
|
+
rpc: [ 'https://sepolia.publicgoods.network' ],
|
13716
|
+
faucets: [],
|
13717
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
13718
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
13719
|
+
infoURL: 'https://publicgoods.network/',
|
13720
|
+
shortName: 'sepPGN',
|
13721
|
+
chainId: 58008,
|
13722
|
+
networkId: 58008,
|
13723
|
+
icon: 'publicGoodsNetwork',
|
13724
|
+
explorers: [
|
13725
|
+
{
|
13726
|
+
name: 'blockscout',
|
13727
|
+
url: 'https://explorer.sepolia.publicgoods.network',
|
13728
|
+
icon: 'blockscout',
|
13729
|
+
standard: 'EIP3091'
|
13730
|
+
}
|
13731
|
+
],
|
13732
|
+
parent: {
|
13733
|
+
type: 'L2',
|
13734
|
+
chain: 'eip155-11155111',
|
13735
|
+
bridges: [ { url: 'https://pgn-bridge.vercel.app/bridge' } ]
|
13736
|
+
}
|
13737
|
+
},
|
13662
13738
|
{
|
13663
13739
|
name: 'Linea Testnet',
|
13664
13740
|
title: 'Linea Goerli Testnet',
|