eth-chainlist 0.0.180 → 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 +16 -0
- package/data/chain.js +109 -14
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
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
|
+
|
11
|
+
### 0.0.181 (2023-07-11)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.180 ([9ac32ab](https://github.com/poowf/eth-chainlist/commit/9ac32ab80367e4d4586efc279064eec41a9547dc))
|
17
|
+
* update chain data ([8f9fdbc](https://github.com/poowf/eth-chainlist/commit/8f9fdbc92b2f877b487f8633f310a4e201fb9fbf))
|
18
|
+
|
3
19
|
### 0.0.180 (2023-07-09)
|
4
20
|
|
5
21
|
|
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
|
{
|
@@ -8932,6 +8966,25 @@ const chainArray = [
|
|
8932
8966
|
}
|
8933
8967
|
]
|
8934
8968
|
},
|
8969
|
+
{
|
8970
|
+
name: 'SenjePowers Testnet',
|
8971
|
+
chain: 'SPC',
|
8972
|
+
icon: 'SenjePowers',
|
8973
|
+
rpc: [ 'https://testnet-rpc.senjepowersscan.com' ],
|
8974
|
+
faucets: [ 'https://faucet.senjepowersscan.com' ],
|
8975
|
+
nativeCurrency: { name: 'SenjePowers', symbol: 'SPC', decimals: 18 },
|
8976
|
+
infoURL: 'https://senjepowersscan.com',
|
8977
|
+
shortName: 'SPCt',
|
8978
|
+
chainId: 3698,
|
8979
|
+
networkId: 3698,
|
8980
|
+
explorers: [
|
8981
|
+
{
|
8982
|
+
name: 'SenjePowers',
|
8983
|
+
url: 'https://testnet.senjepowersscan.com',
|
8984
|
+
standard: 'EIP3091'
|
8985
|
+
}
|
8986
|
+
]
|
8987
|
+
},
|
8935
8988
|
{
|
8936
8989
|
name: 'Crossbell',
|
8937
8990
|
chain: 'Crossbell',
|
@@ -9364,8 +9417,7 @@ const chainArray = [
|
|
9364
9417
|
rpc: [
|
9365
9418
|
'https://testnet.avax.boba.network',
|
9366
9419
|
'wss://wss.testnet.avax.boba.network',
|
9367
|
-
'https://replica.testnet.avax.boba.network'
|
9368
|
-
'wss://replica-wss.testnet.avax.boba.network'
|
9420
|
+
'https://replica.testnet.avax.boba.network'
|
9369
9421
|
],
|
9370
9422
|
faucets: [],
|
9371
9423
|
nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 },
|
@@ -9379,7 +9431,12 @@ const chainArray = [
|
|
9379
9431
|
url: 'https://blockexplorer.testnet.avax.boba.network',
|
9380
9432
|
standard: 'none'
|
9381
9433
|
}
|
9382
|
-
]
|
9434
|
+
],
|
9435
|
+
parent: {
|
9436
|
+
type: 'L2',
|
9437
|
+
chain: 'eip155-5',
|
9438
|
+
bridges: [ { url: 'https://gateway.boba.network' } ]
|
9439
|
+
}
|
9383
9440
|
},
|
9384
9441
|
{
|
9385
9442
|
name: 'Htmlcoin Mainnet',
|
@@ -11318,7 +11375,12 @@ const chainArray = [
|
|
11318
11375
|
url: 'https://blockexplorer.testnet.bnb.boba.network',
|
11319
11376
|
standard: 'none'
|
11320
11377
|
}
|
11321
|
-
]
|
11378
|
+
],
|
11379
|
+
parent: {
|
11380
|
+
type: 'L2',
|
11381
|
+
chain: 'eip155-5',
|
11382
|
+
bridges: [ { url: 'https://gateway.boba.network' } ]
|
11383
|
+
}
|
11322
11384
|
},
|
11323
11385
|
{
|
11324
11386
|
name: 'MainnetZ Testnet',
|
@@ -13600,9 +13662,11 @@ const chainArray = [
|
|
13600
13662
|
chain: 'Boba BNB Mainnet',
|
13601
13663
|
rpc: [
|
13602
13664
|
'https://bnb.boba.network',
|
13603
|
-
'
|
13665
|
+
'http://boba-bnb.gateway.tenderly.co/',
|
13666
|
+
'http://gateway.tenderly.co/public/boba-bnb',
|
13604
13667
|
'https://replica.bnb.boba.network',
|
13605
|
-
'wss://
|
13668
|
+
'wss://boba-bnb.gateway.tenderly.co/',
|
13669
|
+
'wss://gateway.tenderly.co/public/boba-bnb'
|
13606
13670
|
],
|
13607
13671
|
faucets: [],
|
13608
13672
|
nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 },
|
@@ -13616,7 +13680,12 @@ const chainArray = [
|
|
13616
13680
|
url: 'https://blockexplorer.bnb.boba.network',
|
13617
13681
|
standard: 'none'
|
13618
13682
|
}
|
13619
|
-
]
|
13683
|
+
],
|
13684
|
+
parent: {
|
13685
|
+
type: 'L2',
|
13686
|
+
chain: 'eip155-5',
|
13687
|
+
bridges: [ { url: 'https://gateway.boba.network' } ]
|
13688
|
+
}
|
13620
13689
|
},
|
13621
13690
|
{
|
13622
13691
|
name: 'Rollux Testnet',
|
@@ -13640,6 +13709,32 @@ const chainArray = [
|
|
13640
13709
|
}
|
13641
13710
|
]
|
13642
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
|
+
},
|
13643
13738
|
{
|
13644
13739
|
name: 'Linea Testnet',
|
13645
13740
|
title: 'Linea Goerli Testnet',
|