eth-chainlist 0.0.244 → 0.0.246
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 +92 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.246 (2023-09-30)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.245 ([915bc72](https://github.com/poowf/eth-chainlist/commit/915bc720d9f6ecc2fe8647a6371942b33be482bf))
|
9
|
+
* update chain data ([d9b46e0](https://github.com/poowf/eth-chainlist/commit/d9b46e03f7a1adc2eb39ca65a91feb9ff1214a4d))
|
10
|
+
|
11
|
+
### 0.0.245 (2023-09-29)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.244 ([0e288c8](https://github.com/poowf/eth-chainlist/commit/0e288c8cf0b723ae8e4000198cac2c5ee32d1ada))
|
17
|
+
* update chain data ([1a4b471](https://github.com/poowf/eth-chainlist/commit/1a4b47165f1c06afbe5ccd7c314135acc8460042))
|
18
|
+
|
3
19
|
### 0.0.244 (2023-09-28)
|
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',
|
@@ -6000,6 +6026,26 @@ const chainArray = [
|
|
6000
6026
|
chainId: 956,
|
6001
6027
|
networkId: 956
|
6002
6028
|
},
|
6029
|
+
{
|
6030
|
+
name: 'BTC20 Smart Chain',
|
6031
|
+
chain: 'BTC20',
|
6032
|
+
rpc: [ 'https://rpc.bitcoincode.technology/' ],
|
6033
|
+
faucets: [],
|
6034
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
6035
|
+
nativeCurrency: { name: 'BTCC', symbol: 'BTCC', decimals: 18 },
|
6036
|
+
infoURL: 'https://bitcoincode.technology',
|
6037
|
+
shortName: 'btc20',
|
6038
|
+
chainId: 963,
|
6039
|
+
networkId: 963,
|
6040
|
+
icon: 'btc20',
|
6041
|
+
explorers: [
|
6042
|
+
{
|
6043
|
+
name: 'blockscout',
|
6044
|
+
url: 'https://scan.bitcoincode.technology',
|
6045
|
+
standard: 'EIP3091'
|
6046
|
+
}
|
6047
|
+
]
|
6048
|
+
},
|
6003
6049
|
{
|
6004
6050
|
name: 'Oort Mainnet',
|
6005
6051
|
chain: 'Oort Mainnet',
|
@@ -6238,7 +6284,8 @@ const chainArray = [
|
|
6238
6284
|
{
|
6239
6285
|
name: 'Tectum explorer',
|
6240
6286
|
url: 'https://explorer.tectum.io',
|
6241
|
-
|
6287
|
+
icon: 'Tettoken256',
|
6288
|
+
standard: 'EIP3091'
|
6242
6289
|
}
|
6243
6290
|
]
|
6244
6291
|
},
|
@@ -7198,7 +7245,9 @@ const chainArray = [
|
|
7198
7245
|
chain: 'MOON',
|
7199
7246
|
rpc: [
|
7200
7247
|
'https://rpc.api.moonbeam.network',
|
7201
|
-
'wss://wss.api.moonbeam.network'
|
7248
|
+
'wss://wss.api.moonbeam.network',
|
7249
|
+
'https://moonbeam.publicnode.com',
|
7250
|
+
'wss://moonbeam.publicnode.com'
|
7202
7251
|
],
|
7203
7252
|
faucets: [],
|
7204
7253
|
nativeCurrency: { name: 'Glimmer', symbol: 'GLMR', decimals: 18 },
|
@@ -7219,7 +7268,9 @@ const chainArray = [
|
|
7219
7268
|
chain: 'MOON',
|
7220
7269
|
rpc: [
|
7221
7270
|
'https://rpc.api.moonriver.moonbeam.network',
|
7222
|
-
'wss://wss.api.moonriver.moonbeam.network'
|
7271
|
+
'wss://wss.api.moonriver.moonbeam.network',
|
7272
|
+
'https://moonriver.publicnode.com',
|
7273
|
+
'wss://moonriver.publicnode.com'
|
7223
7274
|
],
|
7224
7275
|
faucets: [],
|
7225
7276
|
nativeCurrency: { name: 'Moonriver', symbol: 'MOVR', decimals: 18 },
|
@@ -13448,7 +13499,9 @@ const chainArray = [
|
|
13448
13499
|
rpc: [
|
13449
13500
|
'https://rpc.chiadochain.net',
|
13450
13501
|
'https://rpc.chiado.gnosis.gateway.fm',
|
13451
|
-
'wss://rpc.chiadochain.net/wss'
|
13502
|
+
'wss://rpc.chiadochain.net/wss',
|
13503
|
+
'https://gnosis-chiado.publicnode.com',
|
13504
|
+
'wss://gnosis-chiado.publicnode.com'
|
13452
13505
|
],
|
13453
13506
|
faucets: [ 'https://gnosisfaucet.com' ],
|
13454
13507
|
nativeCurrency: { name: 'Chiado xDAI', symbol: 'XDAI', decimals: 18 },
|
@@ -14343,7 +14396,11 @@ const chainArray = [
|
|
14343
14396
|
{
|
14344
14397
|
name: 'Holesky',
|
14345
14398
|
chain: 'ETH',
|
14346
|
-
rpc: [
|
14399
|
+
rpc: [
|
14400
|
+
'https://rpc.holesky.ethpandaops.io',
|
14401
|
+
'https://ethereum-holesky.publicnode.com',
|
14402
|
+
'wss://ethereum-holesky.publicnode.com'
|
14403
|
+
],
|
14347
14404
|
faucets: [
|
14348
14405
|
'https://faucet.holesky.ethpandaops.io',
|
14349
14406
|
'https://holesky-faucet.pk910.de'
|
@@ -14361,6 +14418,12 @@ const chainArray = [
|
|
14361
14418
|
url: 'https://holesky.beaconcha.in',
|
14362
14419
|
icon: 'ethereum',
|
14363
14420
|
standard: 'EIP3091'
|
14421
|
+
},
|
14422
|
+
{
|
14423
|
+
name: 'otterscan-holesky',
|
14424
|
+
url: 'https://holesky.otterscan.io',
|
14425
|
+
icon: 'ethereum',
|
14426
|
+
standard: 'EIP3091'
|
14364
14427
|
}
|
14365
14428
|
]
|
14366
14429
|
},
|
@@ -15448,6 +15511,25 @@ const chainArray = [
|
|
15448
15511
|
}
|
15449
15512
|
]
|
15450
15513
|
},
|
15514
|
+
{
|
15515
|
+
name: 'Gesoten Verse Testnet',
|
15516
|
+
chain: 'Gesoten Verse',
|
15517
|
+
rpc: [ 'https://rpc.testnet.verse.gesoten.com/' ],
|
15518
|
+
faucets: [],
|
15519
|
+
nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 },
|
15520
|
+
infoURL: 'https://gesoten.com/',
|
15521
|
+
shortName: 'GST',
|
15522
|
+
icon: 'gesoten',
|
15523
|
+
chainId: 42801,
|
15524
|
+
networkId: 42801,
|
15525
|
+
explorers: [
|
15526
|
+
{
|
15527
|
+
name: 'Gesoten Verse Testnet Explorer',
|
15528
|
+
url: 'https://explorer.testnet.verse.gesoten.com',
|
15529
|
+
standard: 'EIP3091'
|
15530
|
+
}
|
15531
|
+
]
|
15532
|
+
},
|
15451
15533
|
{
|
15452
15534
|
name: 'Kinto Testnet',
|
15453
15535
|
title: 'Kinto Testnet',
|
@@ -19852,7 +19934,9 @@ const chainArray = [
|
|
19852
19934
|
'https://sepolia.infura.io/v3/${INFURA_API_KEY}',
|
19853
19935
|
'wss://sepolia.infura.io/v3/${INFURA_API_KEY}',
|
19854
19936
|
'https://sepolia.gateway.tenderly.co',
|
19855
|
-
'wss://sepolia.gateway.tenderly.co'
|
19937
|
+
'wss://sepolia.gateway.tenderly.co',
|
19938
|
+
'https://ethereum-sepolia.publicnode.com',
|
19939
|
+
'wss://ethereum-sepolia.publicnode.com'
|
19856
19940
|
],
|
19857
19941
|
faucets: [
|
19858
19942
|
'http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'
|