eth-chainlist 0.0.245 → 0.0.247
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 +76 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.247 (2023-10-01)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.246 ([70a5a00](https://github.com/poowf/eth-chainlist/commit/70a5a004d092d047b78b53c0b0052a97cc4a3165))
|
9
|
+
* update chain data ([f9f5b2f](https://github.com/poowf/eth-chainlist/commit/f9f5b2f8e3d3b2d651818256e6a6c730697f6256))
|
10
|
+
|
11
|
+
### 0.0.246 (2023-09-30)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.245 ([915bc72](https://github.com/poowf/eth-chainlist/commit/915bc720d9f6ecc2fe8647a6371942b33be482bf))
|
17
|
+
* update chain data ([d9b46e0](https://github.com/poowf/eth-chainlist/commit/d9b46e03f7a1adc2eb39ca65a91feb9ff1214a4d))
|
18
|
+
|
3
19
|
### 0.0.245 (2023-09-29)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -1951,7 +1951,9 @@ const chainArray = [
|
|
1951
1951
|
'https://gnosis.blockpi.network/v1/rpc/public',
|
1952
1952
|
'https://web3endpoints.com/gnosischain-mainnet',
|
1953
1953
|
'https://gnosis.oat.farm',
|
1954
|
-
'wss://rpc.gnosischain.com/wss'
|
1954
|
+
'wss://rpc.gnosischain.com/wss',
|
1955
|
+
'https://gnosis.publicnode.com',
|
1956
|
+
'wss://gnosis.publicnode.com'
|
1955
1957
|
],
|
1956
1958
|
faucets: [
|
1957
1959
|
'https://gnosisfaucet.com',
|
@@ -3186,7 +3188,11 @@ const chainArray = [
|
|
3186
3188
|
{
|
3187
3189
|
name: 'opBNB Mainnet',
|
3188
3190
|
chain: 'opBNB',
|
3189
|
-
rpc: [
|
3191
|
+
rpc: [
|
3192
|
+
'https://opbnb-mainnet-rpc.bnbchain.org',
|
3193
|
+
'https://opbnb.publicnode.com',
|
3194
|
+
'wss://opbnb.publicnode.com'
|
3195
|
+
],
|
3190
3196
|
faucets: [],
|
3191
3197
|
nativeCurrency: { name: 'BNB Chain Native Token', symbol: 'BNB', decimals: 18 },
|
3192
3198
|
infoURL: 'https://opbnb.bnbchain.org/en',
|
@@ -5242,6 +5248,26 @@ const chainArray = [
|
|
5242
5248
|
}
|
5243
5249
|
]
|
5244
5250
|
},
|
5251
|
+
{
|
5252
|
+
name: 'Highbury',
|
5253
|
+
chain: 'HIGHBURY',
|
5254
|
+
rpc: [ 'https://highbury.furya.io', 'https://rest.furya.io' ],
|
5255
|
+
faucets: [],
|
5256
|
+
nativeCurrency: { name: 'Fury', symbol: 'FURY', decimals: 18 },
|
5257
|
+
infoURL: 'https://www.fury.black',
|
5258
|
+
shortName: 'fury',
|
5259
|
+
chainId: 710,
|
5260
|
+
networkId: 710,
|
5261
|
+
icon: 'highbury',
|
5262
|
+
explorers: [
|
5263
|
+
{
|
5264
|
+
name: 'Furya EVM Explorer',
|
5265
|
+
url: 'https://explorer.furya.io',
|
5266
|
+
standard: 'EIP3091',
|
5267
|
+
icon: 'highbury'
|
5268
|
+
}
|
5269
|
+
]
|
5270
|
+
},
|
5245
5271
|
{
|
5246
5272
|
name: 'Shibarium Beta',
|
5247
5273
|
chain: 'Shibarium',
|
@@ -7219,7 +7245,9 @@ const chainArray = [
|
|
7219
7245
|
chain: 'MOON',
|
7220
7246
|
rpc: [
|
7221
7247
|
'https://rpc.api.moonbeam.network',
|
7222
|
-
'wss://wss.api.moonbeam.network'
|
7248
|
+
'wss://wss.api.moonbeam.network',
|
7249
|
+
'https://moonbeam.publicnode.com',
|
7250
|
+
'wss://moonbeam.publicnode.com'
|
7223
7251
|
],
|
7224
7252
|
faucets: [],
|
7225
7253
|
nativeCurrency: { name: 'Glimmer', symbol: 'GLMR', decimals: 18 },
|
@@ -7240,7 +7268,9 @@ const chainArray = [
|
|
7240
7268
|
chain: 'MOON',
|
7241
7269
|
rpc: [
|
7242
7270
|
'https://rpc.api.moonriver.moonbeam.network',
|
7243
|
-
'wss://wss.api.moonriver.moonbeam.network'
|
7271
|
+
'wss://wss.api.moonriver.moonbeam.network',
|
7272
|
+
'https://moonriver.publicnode.com',
|
7273
|
+
'wss://moonriver.publicnode.com'
|
7244
7274
|
],
|
7245
7275
|
faucets: [],
|
7246
7276
|
nativeCurrency: { name: 'Moonriver', symbol: 'MOVR', decimals: 18 },
|
@@ -13469,7 +13499,9 @@ const chainArray = [
|
|
13469
13499
|
rpc: [
|
13470
13500
|
'https://rpc.chiadochain.net',
|
13471
13501
|
'https://rpc.chiado.gnosis.gateway.fm',
|
13472
|
-
'wss://rpc.chiadochain.net/wss'
|
13502
|
+
'wss://rpc.chiadochain.net/wss',
|
13503
|
+
'https://gnosis-chiado.publicnode.com',
|
13504
|
+
'wss://gnosis-chiado.publicnode.com'
|
13473
13505
|
],
|
13474
13506
|
faucets: [ 'https://gnosisfaucet.com' ],
|
13475
13507
|
nativeCurrency: { name: 'Chiado xDAI', symbol: 'XDAI', decimals: 18 },
|
@@ -14364,7 +14396,11 @@ const chainArray = [
|
|
14364
14396
|
{
|
14365
14397
|
name: 'Holesky',
|
14366
14398
|
chain: 'ETH',
|
14367
|
-
rpc: [
|
14399
|
+
rpc: [
|
14400
|
+
'https://rpc.holesky.ethpandaops.io',
|
14401
|
+
'https://ethereum-holesky.publicnode.com',
|
14402
|
+
'wss://ethereum-holesky.publicnode.com'
|
14403
|
+
],
|
14368
14404
|
faucets: [
|
14369
14405
|
'https://faucet.holesky.ethpandaops.io',
|
14370
14406
|
'https://holesky-faucet.pk910.de'
|
@@ -14382,6 +14418,18 @@ const chainArray = [
|
|
14382
14418
|
url: 'https://holesky.beaconcha.in',
|
14383
14419
|
icon: 'ethereum',
|
14384
14420
|
standard: 'EIP3091'
|
14421
|
+
},
|
14422
|
+
{
|
14423
|
+
name: 'otterscan-holesky',
|
14424
|
+
url: 'https://holesky.otterscan.io',
|
14425
|
+
icon: 'ethereum',
|
14426
|
+
standard: 'EIP3091'
|
14427
|
+
},
|
14428
|
+
{
|
14429
|
+
name: 'Holesky Etherscan',
|
14430
|
+
url: 'https://holesky.etherscan.io',
|
14431
|
+
icon: 'ethereum',
|
14432
|
+
standard: 'EIP3091'
|
14385
14433
|
}
|
14386
14434
|
]
|
14387
14435
|
},
|
@@ -15469,6 +15517,25 @@ const chainArray = [
|
|
15469
15517
|
}
|
15470
15518
|
]
|
15471
15519
|
},
|
15520
|
+
{
|
15521
|
+
name: 'Gesoten Verse Testnet',
|
15522
|
+
chain: 'Gesoten Verse',
|
15523
|
+
rpc: [ 'https://rpc.testnet.verse.gesoten.com/' ],
|
15524
|
+
faucets: [],
|
15525
|
+
nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 },
|
15526
|
+
infoURL: 'https://gesoten.com/',
|
15527
|
+
shortName: 'GST',
|
15528
|
+
icon: 'gesoten',
|
15529
|
+
chainId: 42801,
|
15530
|
+
networkId: 42801,
|
15531
|
+
explorers: [
|
15532
|
+
{
|
15533
|
+
name: 'Gesoten Verse Testnet Explorer',
|
15534
|
+
url: 'https://explorer.testnet.verse.gesoten.com',
|
15535
|
+
standard: 'EIP3091'
|
15536
|
+
}
|
15537
|
+
]
|
15538
|
+
},
|
15472
15539
|
{
|
15473
15540
|
name: 'Kinto Testnet',
|
15474
15541
|
title: 'Kinto Testnet',
|
@@ -19873,7 +19940,9 @@ const chainArray = [
|
|
19873
19940
|
'https://sepolia.infura.io/v3/${INFURA_API_KEY}',
|
19874
19941
|
'wss://sepolia.infura.io/v3/${INFURA_API_KEY}',
|
19875
19942
|
'https://sepolia.gateway.tenderly.co',
|
19876
|
-
'wss://sepolia.gateway.tenderly.co'
|
19943
|
+
'wss://sepolia.gateway.tenderly.co',
|
19944
|
+
'https://ethereum-sepolia.publicnode.com',
|
19945
|
+
'wss://ethereum-sepolia.publicnode.com'
|
19877
19946
|
],
|
19878
19947
|
faucets: [
|
19879
19948
|
'http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'
|