eth-chainlist 0.0.342 → 0.0.344

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/data/chain.js +251 -75
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.344 (2024-02-21)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.343 ([d475e5c](https://github.com/poowf/eth-chainlist/commit/d475e5cabca254014946b48c68c9d9ea4e21e14d))
9
+ * update chain data ([e603abc](https://github.com/poowf/eth-chainlist/commit/e603abc4ae1ac71302b394b0ea26eee59c8fef2a))
10
+
11
+ ### 0.0.343 (2024-02-20)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.342 ([995abaa](https://github.com/poowf/eth-chainlist/commit/995abaa97f1b2bda2de47446dbf20a351b6150f3))
17
+ * update chain data ([2c0ffec](https://github.com/poowf/eth-chainlist/commit/2c0ffecf82c878fbf1dd6e8ee877be999e5f7d7f))
18
+
3
19
  ### 0.0.342 (2024-02-19)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -8,8 +8,8 @@ const chainArray = [
8
8
  'wss://mainnet.infura.io/ws/v3/${INFURA_API_KEY}',
9
9
  'https://api.mycryptoapi.com/eth',
10
10
  'https://cloudflare-eth.com',
11
- 'https://ethereum.publicnode.com',
12
- 'wss://ethereum.publicnode.com',
11
+ 'https://ethereum-rpc.publicnode.com',
12
+ 'wss://ethereum-rpc.publicnode.com',
13
13
  'https://mainnet.gateway.tenderly.co',
14
14
  'wss://mainnet.gateway.tenderly.co',
15
15
  'https://rpc.blocknative.com/boost',
@@ -123,8 +123,8 @@ const chainArray = [
123
123
  'https://goerli.infura.io/v3/${INFURA_API_KEY}',
124
124
  'wss://goerli.infura.io/v3/${INFURA_API_KEY}',
125
125
  'https://rpc.goerli.mudit.blog/',
126
- 'https://ethereum-goerli.publicnode.com',
127
- 'wss://ethereum-goerli.publicnode.com',
126
+ 'https://ethereum-goerli-rpc.publicnode.com',
127
+ 'wss://ethereum-goerli-rpc.publicnode.com',
128
128
  'https://goerli.gateway.tenderly.co',
129
129
  'wss://goerli.gateway.tenderly.co'
130
130
  ],
@@ -224,8 +224,8 @@ const chainArray = [
224
224
  chain: 'ETH',
225
225
  rpc: [
226
226
  'https://mainnet.optimism.io',
227
- 'https://optimism.publicnode.com',
228
- 'wss://optimism.publicnode.com',
227
+ 'https://optimism-rpc.publicnode.com',
228
+ 'wss://optimism-rpc.publicnode.com',
229
229
  'https://optimism.gateway.tenderly.co',
230
230
  'wss://optimism.gateway.tenderly.co'
231
231
  ],
@@ -490,8 +490,8 @@ const chainArray = [
490
490
  chain: 'CRO',
491
491
  rpc: [
492
492
  'https://evm.cronos.org',
493
- 'https://cronos-evm.publicnode.com',
494
- 'wss://cronos-evm.publicnode.com'
493
+ 'https://cronos-evm-rpc.publicnode.com',
494
+ 'wss://cronos-evm-rpc.publicnode.com'
495
495
  ],
496
496
  features: [ { name: 'EIP1559' } ],
497
497
  faucets: [],
@@ -1129,8 +1129,8 @@ const chainArray = [
1129
1129
  'https://bsc-dataseed2.ninicoin.io',
1130
1130
  'https://bsc-dataseed3.ninicoin.io',
1131
1131
  'https://bsc-dataseed4.ninicoin.io',
1132
- 'https://bsc.publicnode.com',
1133
- 'wss://bsc.publicnode.com',
1132
+ 'https://bsc-rpc.publicnode.com',
1133
+ 'wss://bsc-rpc.publicnode.com',
1134
1134
  'wss://bsc-ws-node.nariox.org'
1135
1135
  ],
1136
1136
  faucets: [],
@@ -1162,8 +1162,8 @@ const chainArray = [
1162
1162
  'https://rpc.ankr.com/syscoin/${ANKR_API_KEY}',
1163
1163
  'https://syscoin.public-rpc.com',
1164
1164
  'wss://rpc.syscoin.org/wss',
1165
- 'https://syscoin-evm.publicnode.com',
1166
- 'wss://syscoin-evm.publicnode.com'
1165
+ 'https://syscoin-evm-rpc.publicnode.com',
1166
+ 'wss://syscoin-evm-rpc.publicnode.com'
1167
1167
  ],
1168
1168
  faucets: [ 'https://faucet.syscoin.org' ],
1169
1169
  nativeCurrency: { name: 'Syscoin', symbol: 'SYS', decimals: 18 },
@@ -1988,8 +1988,8 @@ const chainArray = [
1988
1988
  'https://data-seed-prebsc-2-s2.bnbchain.org:8545',
1989
1989
  'https://data-seed-prebsc-1-s3.bnbchain.org:8545',
1990
1990
  'https://data-seed-prebsc-2-s3.bnbchain.org:8545',
1991
- 'https://bsc-testnet.publicnode.com',
1992
- 'wss://bsc-testnet.publicnode.com'
1991
+ 'https://bsc-testnet-rpc.publicnode.com',
1992
+ 'wss://bsc-testnet-rpc.publicnode.com'
1993
1993
  ],
1994
1994
  faucets: [ 'https://testnet.bnbchain.org/faucet-smart' ],
1995
1995
  nativeCurrency: { name: 'BNB Chain Native Token', symbol: 'tBNB', decimals: 18 },
@@ -2061,8 +2061,8 @@ const chainArray = [
2061
2061
  'https://web3endpoints.com/gnosischain-mainnet',
2062
2062
  'https://gnosis.oat.farm',
2063
2063
  'wss://rpc.gnosischain.com/wss',
2064
- 'https://gnosis.publicnode.com',
2065
- 'wss://gnosis.publicnode.com'
2064
+ 'https://gnosis-rpc.publicnode.com',
2065
+ 'wss://gnosis-rpc.publicnode.com'
2066
2066
  ],
2067
2067
  faucets: [
2068
2068
  'https://gnosisfaucet.com',
@@ -2728,8 +2728,8 @@ const chainArray = [
2728
2728
  'https://rpc-mainnet.maticvigil.com',
2729
2729
  'https://rpc-mainnet.matic.quiknode.pro',
2730
2730
  'https://matic-mainnet-full-rpc.bwarelabs.com',
2731
- 'https://polygon-bor.publicnode.com',
2732
- 'wss://polygon-bor.publicnode.com',
2731
+ 'https://polygon-bor-rpc.publicnode.com',
2732
+ 'wss://polygon-bor-rpc.publicnode.com',
2733
2733
  'https://polygon.gateway.tenderly.co',
2734
2734
  'wss://polygon.gateway.tenderly.co'
2735
2735
  ],
@@ -3407,8 +3407,8 @@ const chainArray = [
3407
3407
  'wss://opbnb-mainnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3',
3408
3408
  'https://opbnb-mainnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5',
3409
3409
  'wss://opbnb-mainnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5',
3410
- 'https://opbnb.publicnode.com',
3411
- 'wss://opbnb.publicnode.com'
3410
+ 'https://opbnb-rpc.publicnode.com',
3411
+ 'wss://opbnb-rpc.publicnode.com'
3412
3412
  ],
3413
3413
  faucets: [],
3414
3414
  nativeCurrency: { name: 'BNB Chain Native Token', symbol: 'BNB', decimals: 18 },
@@ -3793,8 +3793,8 @@ const chainArray = [
3793
3793
  chain: 'FTM',
3794
3794
  rpc: [
3795
3795
  'https://rpc.ftm.tools',
3796
- 'https://fantom.publicnode.com',
3797
- 'wss://fantom.publicnode.com'
3796
+ 'https://fantom-rpc.publicnode.com',
3797
+ 'wss://fantom-rpc.publicnode.com'
3798
3798
  ],
3799
3799
  faucets: [],
3800
3800
  nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
@@ -4689,8 +4689,8 @@ const chainArray = [
4689
4689
  rpc: [
4690
4690
  'https://rpc.pulsechain.com',
4691
4691
  'wss://rpc.pulsechain.com',
4692
- 'https://pulsechain.publicnode.com',
4693
- 'wss://pulsechain.publicnode.com',
4692
+ 'https://pulsechain-rpc.publicnode.com',
4693
+ 'wss://pulsechain-rpc.publicnode.com',
4694
4694
  'https://rpc-pulsechain.g4mm4.io',
4695
4695
  'wss://rpc-pulsechain.g4mm4.io'
4696
4696
  ],
@@ -4930,8 +4930,8 @@ const chainArray = [
4930
4930
  chain: 'ETH',
4931
4931
  rpc: [
4932
4932
  'https://goerli.optimism.io',
4933
- 'https://optimism-goerli.publicnode.com',
4934
- 'wss://optimism-goerli.publicnode.com',
4933
+ 'https://optimism-goerli-rpc.publicnode.com',
4934
+ 'wss://optimism-goerli-rpc.publicnode.com',
4935
4935
  'https://optimism-goerli.gateway.tenderly.co',
4936
4936
  'wss://optimism-goerli.gateway.tenderly.co'
4937
4937
  ],
@@ -5164,7 +5164,7 @@ const chainArray = [
5164
5164
  rpc: [],
5165
5165
  faucets: [],
5166
5166
  nativeCurrency: { name: 'Rupaya', symbol: 'RUPX', decimals: 18 },
5167
- infoURL: 'https://www.rupx.io',
5167
+ infoURL: 'https://www.rupaya.io',
5168
5168
  shortName: 'rupx',
5169
5169
  chainId: 499,
5170
5170
  networkId: 499,
@@ -6268,6 +6268,25 @@ const chainArray = [
6268
6268
  }
6269
6269
  ]
6270
6270
  },
6271
+ {
6272
+ name: 'Rupaya Testnet',
6273
+ chain: 'Rupaya Testnet',
6274
+ rpc: [ 'https://rpc.testnet.rupaya.io' ],
6275
+ faucets: [ 'https://faucet.testnet.rupaya.io' ],
6276
+ nativeCurrency: { name: 'Test Rupaya', symbol: 'TRUPX', decimals: 18 },
6277
+ infoURL: 'https://www.rupaya.io',
6278
+ shortName: 'RupayaTestnet',
6279
+ chainId: 799,
6280
+ networkId: 799,
6281
+ slip44: 1,
6282
+ explorers: [
6283
+ {
6284
+ name: 'rupayascan',
6285
+ url: 'https://scan.testnet.rupaya.io',
6286
+ standard: 'EIP3091'
6287
+ }
6288
+ ]
6289
+ },
6271
6290
  {
6272
6291
  name: 'Lucid Blockchain',
6273
6292
  chain: 'Lucid',
@@ -6831,8 +6850,8 @@ const chainArray = [
6831
6850
  rpc: [
6832
6851
  'https://rpc.v4.testnet.pulsechain.com',
6833
6852
  'wss://rpc.v4.testnet.pulsechain.com',
6834
- 'https://pulsechain-testnet.publicnode.com',
6835
- 'wss://pulsechain-testnet.publicnode.com',
6853
+ 'https://pulsechain-testnet-rpc.publicnode.com',
6854
+ 'wss://pulsechain-testnet-rpc.publicnode.com',
6836
6855
  'https://rpc-testnet-pulsechain.g4mm4.io',
6837
6856
  'wss://rpc-testnet-pulsechain.g4mm4.io'
6838
6857
  ],
@@ -7574,7 +7593,11 @@ const chainArray = [
7574
7593
  {
7575
7594
  name: 'Dymension',
7576
7595
  chain: 'Dymension',
7577
- rpc: [ 'https://dymension-evm.blockpi.network/v1/rpc/public' ],
7596
+ rpc: [
7597
+ 'https://dymension-evm.blockpi.network/v1/rpc/public',
7598
+ 'https://dymension-evm-rpc.publicnode.com',
7599
+ 'wss://dymension-evm-rpc.publicnode.com'
7600
+ ],
7578
7601
  faucets: [],
7579
7602
  nativeCurrency: { name: 'DYM', symbol: 'DYM', decimals: 18 },
7580
7603
  infoURL: 'https://dymension.xyz',
@@ -8010,6 +8033,25 @@ const chainArray = [
8010
8033
  }
8011
8034
  ]
8012
8035
  },
8036
+ {
8037
+ name: 'Hybrid Testnet',
8038
+ chain: '$HYB',
8039
+ icon: 'hybridIcon',
8040
+ rpc: [ 'https://testnet-rpc.buildonhybrid.com' ],
8041
+ faucets: [],
8042
+ nativeCurrency: { name: 'Hybrid', symbol: '$HYB', decimals: 18 },
8043
+ infoURL: 'https://buildonhybrid.com',
8044
+ shortName: 'hyb',
8045
+ chainId: 1224,
8046
+ networkId: 1224,
8047
+ explorers: [
8048
+ {
8049
+ name: 'Hybrid Testnet',
8050
+ url: 'https://alphatestnet.buildonhybrid.com',
8051
+ standard: 'EIP3091'
8052
+ }
8053
+ ]
8054
+ },
8013
8055
  {
8014
8056
  name: 'Exzo Network Mainnet',
8015
8057
  chain: 'EXZO',
@@ -8216,8 +8258,8 @@ const chainArray = [
8216
8258
  rpc: [
8217
8259
  'https://rpc.api.moonbeam.network',
8218
8260
  'wss://wss.api.moonbeam.network',
8219
- 'https://moonbeam.publicnode.com',
8220
- 'wss://moonbeam.publicnode.com'
8261
+ 'https://moonbeam-rpc.publicnode.com',
8262
+ 'wss://moonbeam-rpc.publicnode.com'
8221
8263
  ],
8222
8264
  faucets: [],
8223
8265
  nativeCurrency: { name: 'Glimmer', symbol: 'GLMR', decimals: 18 },
@@ -8239,8 +8281,8 @@ const chainArray = [
8239
8281
  rpc: [
8240
8282
  'https://rpc.api.moonriver.moonbeam.network',
8241
8283
  'wss://wss.api.moonriver.moonbeam.network',
8242
- 'https://moonriver.publicnode.com',
8243
- 'wss://moonriver.publicnode.com'
8284
+ 'https://moonriver-rpc.publicnode.com',
8285
+ 'wss://moonriver-rpc.publicnode.com'
8244
8286
  ],
8245
8287
  faucets: [],
8246
8288
  nativeCurrency: { name: 'Moonriver', symbol: 'MOVR', decimals: 18 },
@@ -10645,8 +10687,8 @@ const chainArray = [
10645
10687
  'https://kava-rpc.gateway.pokt.network',
10646
10688
  'https://kava-evm.rpc.thirdweb.com',
10647
10689
  'wss://wevm.kava.io',
10648
- 'https://kava-evm.publicnode.com',
10649
- 'wss://kava-evm.publicnode.com',
10690
+ 'https://kava-evm-rpc.publicnode.com',
10691
+ 'wss://kava-evm-rpc.publicnode.com',
10650
10692
  'https://evm.kava-rpc.com',
10651
10693
  'https://rpc.ankr.com/kava_evm',
10652
10694
  'wss://wevm.kava-rpc.com'
@@ -12171,8 +12213,8 @@ const chainArray = [
12171
12213
  chain: 'FTM',
12172
12214
  rpc: [
12173
12215
  'https://rpc.testnet.fantom.network',
12174
- 'https://fantom-testnet.publicnode.com',
12175
- 'wss://fantom-testnet.publicnode.com'
12216
+ 'https://fantom-testnet-rpc.publicnode.com',
12217
+ 'wss://fantom-testnet-rpc.publicnode.com'
12176
12218
  ],
12177
12219
  faucets: [ 'https://faucet.fantom.network' ],
12178
12220
  nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
@@ -12852,8 +12894,8 @@ const chainArray = [
12852
12894
  icon: 'mantle',
12853
12895
  rpc: [
12854
12896
  'https://rpc.mantle.xyz',
12855
- 'https://mantle.publicnode.com',
12856
- 'wss://mantle.publicnode.com'
12897
+ 'https://mantle-rpc.publicnode.com',
12898
+ 'wss://mantle-rpc.publicnode.com'
12857
12899
  ],
12858
12900
  faucets: [],
12859
12901
  nativeCurrency: { name: 'Mantle', symbol: 'MNT', decimals: 18 },
@@ -13003,8 +13045,8 @@ const chainArray = [
13003
13045
  'https://rpc2.bahamut.io',
13004
13046
  'wss://ws1.sahara.bahamutchain.com',
13005
13047
  'wss://ws2.sahara.bahamutchain.com',
13006
- 'https://bahamut.publicnode.com',
13007
- 'wss://bahamut.publicnode.com'
13048
+ 'https://bahamut-rpc.publicnode.com',
13049
+ 'wss://bahamut-rpc.publicnode.com'
13008
13050
  ],
13009
13051
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
13010
13052
  faucets: [],
@@ -13241,7 +13283,9 @@ const chainArray = [
13241
13283
  'https://opbnb-testnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3',
13242
13284
  'wss://opbnb-testnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3',
13243
13285
  'https://opbnb-testnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5',
13244
- 'wss://opbnb-testnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5'
13286
+ 'wss://opbnb-testnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5',
13287
+ 'https://opbnb-testnet-rpc.publicnode.com',
13288
+ 'wss://opbnb-testnet-rpc.publicnode.com'
13245
13289
  ],
13246
13290
  faucets: [ 'https://testnet.bnbchain.org/faucet-smart' ],
13247
13291
  nativeCurrency: { name: 'BNB Chain Native Token', symbol: 'tBNB', decimals: 18 },
@@ -13296,8 +13340,8 @@ const chainArray = [
13296
13340
  rpc: [
13297
13341
  'https://rpc.tanenbaum.io',
13298
13342
  'wss://rpc.tanenbaum.io/wss',
13299
- 'https://syscoin-tanenbaum-evm.publicnode.com',
13300
- 'wss://syscoin-tanenbaum-evm.publicnode.com'
13343
+ 'https://syscoin-tanenbaum-evm-rpc.publicnode.com',
13344
+ 'wss://syscoin-tanenbaum-evm-rpc.publicnode.com'
13301
13345
  ],
13302
13346
  faucets: [ 'https://faucet.tanenbaum.io' ],
13303
13347
  nativeCurrency: { name: 'Testnet Syscoin', symbol: 'tSYS', decimals: 18 },
@@ -14769,8 +14813,8 @@ const chainArray = [
14769
14813
  'https://developer-access-mainnet.base.org/',
14770
14814
  'https://base.gateway.tenderly.co',
14771
14815
  'wss://base.gateway.tenderly.co',
14772
- 'https://base.publicnode.com',
14773
- 'wss://base.publicnode.com'
14816
+ 'https://base-rpc.publicnode.com',
14817
+ 'wss://base-rpc.publicnode.com'
14774
14818
  ],
14775
14819
  faucets: [],
14776
14820
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
@@ -15897,8 +15941,8 @@ const chainArray = [
15897
15941
  'https://rpc.chiadochain.net',
15898
15942
  'https://rpc.chiado.gnosis.gateway.fm',
15899
15943
  'wss://rpc.chiadochain.net/wss',
15900
- 'https://gnosis-chiado.publicnode.com',
15901
- 'wss://gnosis-chiado.publicnode.com'
15944
+ 'https://gnosis-chiado-rpc.publicnode.com',
15945
+ 'wss://gnosis-chiado-rpc.publicnode.com'
15902
15946
  ],
15903
15947
  faucets: [ 'https://gnosisfaucet.com' ],
15904
15948
  nativeCurrency: { name: 'Chiado xDAI', symbol: 'XDAI', decimals: 18 },
@@ -16229,8 +16273,8 @@ const chainArray = [
16229
16273
  chain: 'Haqq',
16230
16274
  rpc: [
16231
16275
  'https://rpc.eth.haqq.network',
16232
- 'https://haqq-evm.publicnode.com',
16233
- 'wss://haqq-evm.publicnode.com'
16276
+ 'https://haqq-evm-rpc.publicnode.com',
16277
+ 'wss://haqq-evm-rpc.publicnode.com'
16234
16278
  ],
16235
16279
  faucets: [],
16236
16280
  nativeCurrency: { name: 'Islamic Coin', symbol: 'ISLM', decimals: 18 },
@@ -16947,8 +16991,8 @@ const chainArray = [
16947
16991
  chain: 'ETH',
16948
16992
  rpc: [
16949
16993
  'https://rpc.holesky.ethpandaops.io',
16950
- 'https://ethereum-holesky.publicnode.com',
16951
- 'wss://ethereum-holesky.publicnode.com'
16994
+ 'https://ethereum-holesky-rpc.publicnode.com',
16995
+ 'wss://ethereum-holesky-rpc.publicnode.com'
16952
16996
  ],
16953
16997
  faucets: [
16954
16998
  'https://faucet.holesky.ethpandaops.io',
@@ -18232,7 +18276,7 @@ const chainArray = [
18232
18276
  chain: 'Q',
18233
18277
  rpc: [ 'https://rpc.q.org' ],
18234
18278
  faucets: [],
18235
- nativeCurrency: { name: 'Q token', symbol: 'Q', decimals: 18 },
18279
+ nativeCurrency: { name: 'QGOV', symbol: 'QGOV', decimals: 18 },
18236
18280
  infoURL: 'https://q.org',
18237
18281
  shortName: 'q',
18238
18282
  chainId: 35441,
@@ -18608,8 +18652,8 @@ const chainArray = [
18608
18652
  icon: 'avax',
18609
18653
  rpc: [
18610
18654
  'https://api.avax-test.network/ext/bc/C/rpc',
18611
- 'https://avalanche-fuji-c-chain.publicnode.com',
18612
- 'wss://avalanche-fuji-c-chain.publicnode.com'
18655
+ 'https://avalanche-fuji-c-chain-rpc.publicnode.com',
18656
+ 'wss://avalanche-fuji-c-chain-rpc.publicnode.com'
18613
18657
  ],
18614
18658
  faucets: [ 'https://faucet.avax-test.network/' ],
18615
18659
  nativeCurrency: { name: 'Avalanche', symbol: 'AVAX', decimals: 18 },
@@ -18632,8 +18676,8 @@ const chainArray = [
18632
18676
  icon: 'avax',
18633
18677
  rpc: [
18634
18678
  'https://api.avax.network/ext/bc/C/rpc',
18635
- 'https://avalanche-c-chain.publicnode.com',
18636
- 'wss://avalanche-c-chain.publicnode.com'
18679
+ 'https://avalanche-c-chain-rpc.publicnode.com',
18680
+ 'wss://avalanche-c-chain-rpc.publicnode.com'
18637
18681
  ],
18638
18682
  features: [ { name: 'EIP1559' } ],
18639
18683
  faucets: [],
@@ -20177,8 +20221,8 @@ const chainArray = [
20177
20221
  icon: 'polygon',
20178
20222
  rpc: [
20179
20223
  'https://rpc-mumbai.maticvigil.com',
20180
- 'https://polygon-mumbai-bor.publicnode.com',
20181
- 'wss://polygon-mumbai-bor.publicnode.com',
20224
+ 'https://polygon-mumbai-bor-rpc.publicnode.com',
20225
+ 'wss://polygon-mumbai-bor-rpc.publicnode.com',
20182
20226
  'https://polygon-mumbai.gateway.tenderly.co',
20183
20227
  'wss://polygon-mumbai.gateway.tenderly.co'
20184
20228
  ],
@@ -20378,6 +20422,21 @@ const chainArray = [
20378
20422
  networkId: 81363,
20379
20423
  status: 'incubating'
20380
20424
  },
20425
+ {
20426
+ name: 'Blast',
20427
+ status: 'incubating',
20428
+ chain: 'ETH',
20429
+ rpc: [],
20430
+ faucets: [],
20431
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
20432
+ infoURL: 'https://blast.io/',
20433
+ shortName: 'blastmainnet',
20434
+ chainId: 81457,
20435
+ networkId: 81457,
20436
+ icon: 'blast',
20437
+ explorers: [],
20438
+ parent: { type: 'L2', chain: 'eip155-1' }
20439
+ },
20381
20440
  {
20382
20441
  name: 'Quantum Chain Mainnet',
20383
20442
  chain: 'QNET',
@@ -20422,8 +20481,8 @@ const chainArray = [
20422
20481
  'https://goerli.base.org',
20423
20482
  'https://base-goerli.gateway.tenderly.co',
20424
20483
  'wss://base-goerli.gateway.tenderly.co',
20425
- 'https://base-goerli.publicnode.com',
20426
- 'wss://base-goerli.publicnode.com'
20484
+ 'https://base-goerli-rpc.publicnode.com',
20485
+ 'wss://base-goerli-rpc.publicnode.com'
20427
20486
  ],
20428
20487
  faucets: [ 'https://www.coinbase.com/faucets/base-ethereum-goerli-faucet' ],
20429
20488
  nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
@@ -20456,7 +20515,11 @@ const chainArray = [
20456
20515
  {
20457
20516
  name: 'Base Sepolia Testnet',
20458
20517
  chain: 'ETH',
20459
- rpc: [ 'https://sepolia.base.org' ],
20518
+ rpc: [
20519
+ 'https://https://sepolia.base.org',
20520
+ 'https://base-sepolia-rpc.publicnode.com',
20521
+ 'wss://base-sepolia-rpc.publicnode.com'
20522
+ ],
20460
20523
  faucets: [],
20461
20524
  nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
20462
20525
  infoURL: 'https://base.org',
@@ -21070,6 +21133,25 @@ const chainArray = [
21070
21133
  }
21071
21134
  ]
21072
21135
  },
21136
+ {
21137
+ name: 'Masa Testnet',
21138
+ chain: 'MASA',
21139
+ rpc: [ 'https://subnets.avax.network/masatestne/testnet/rpc' ],
21140
+ features: [ { name: 'EIP1559' } ],
21141
+ faucets: [],
21142
+ nativeCurrency: { name: 'Masa Token', symbol: 'MASA', decimals: 18 },
21143
+ infoURL: 'https://masa.finance',
21144
+ shortName: 'masa',
21145
+ chainId: 103454,
21146
+ networkId: 103454,
21147
+ explorers: [
21148
+ {
21149
+ name: 'Masa Testnet Explorer',
21150
+ url: 'https://subnets-test.avax.network/masatestnet',
21151
+ standard: 'EIP3091'
21152
+ }
21153
+ ]
21154
+ },
21073
21155
  {
21074
21156
  name: 'BROChain Mainnet',
21075
21157
  chain: 'BRO',
@@ -24116,8 +24198,8 @@ const chainArray = [
24116
24198
  'wss://sepolia.infura.io/v3/${INFURA_API_KEY}',
24117
24199
  'https://sepolia.gateway.tenderly.co',
24118
24200
  'wss://sepolia.gateway.tenderly.co',
24119
- 'https://ethereum-sepolia.publicnode.com',
24120
- 'wss://ethereum-sepolia.publicnode.com'
24201
+ 'https://ethereum-sepolia-rpc.publicnode.com',
24202
+ 'wss://ethereum-sepolia-rpc.publicnode.com'
24121
24203
  ],
24122
24204
  faucets: [
24123
24205
  'http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'
@@ -24448,6 +24530,30 @@ const chainArray = [
24448
24530
  chainId: 35855456,
24449
24531
  networkId: 35855456
24450
24532
  },
24533
+ {
24534
+ name: 'SKALE Nebula Hub Testnet',
24535
+ title: 'SKALE Nebula Hub Testnet',
24536
+ chain: 'lanky-ill-funny-testnet',
24537
+ icon: 'nebula',
24538
+ rpc: [
24539
+ 'https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet',
24540
+ 'wss://testnet.skalenodes.com/v1/ws/lanky-ill-funny-testnet'
24541
+ ],
24542
+ faucets: [ 'https://www.sfuelstation.com/' ],
24543
+ nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 },
24544
+ infoURL: 'https://nebulachain.io/',
24545
+ shortName: 'nebula-testnet',
24546
+ chainId: 37084624,
24547
+ networkId: 37084624,
24548
+ slip44: 1,
24549
+ explorers: [
24550
+ {
24551
+ name: 'Blockscout',
24552
+ url: 'https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com',
24553
+ standard: 'EIP3091'
24554
+ }
24555
+ ]
24556
+ },
24451
24557
  {
24452
24558
  name: 'maistestsubnet',
24453
24559
  chain: 'MAI',
@@ -24860,8 +24966,9 @@ const chainArray = [
24860
24966
  ]
24861
24967
  },
24862
24968
  {
24863
- name: 'SKALE Calypso Hub Testnet',
24864
- title: 'Calypso NFT Hub Testnet',
24969
+ name: 'Deprecated SKALE Calypso Hub Testnet',
24970
+ title: 'Deprecated Calypso NFT Hub Testnet',
24971
+ status: 'deprecated',
24865
24972
  chain: 'staging-utter-unripe-menkar',
24866
24973
  icon: 'calypso',
24867
24974
  rpc: [
@@ -24870,7 +24977,7 @@ const chainArray = [
24870
24977
  faucets: [ 'https://sfuel.dirtroad.dev/staging' ],
24871
24978
  nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 },
24872
24979
  infoURL: 'https://calypsohub.network/',
24873
- shortName: 'calypso-testnet',
24980
+ shortName: 'deprected-calypso-testnet',
24874
24981
  chainId: 344106930,
24875
24982
  networkId: 344106930,
24876
24983
  slip44: 1,
@@ -24904,8 +25011,9 @@ const chainArray = [
24904
25011
  ]
24905
25012
  },
24906
25013
  {
24907
- name: 'SKALE Europa Hub Testnet',
24908
- title: 'Europa Hub Testnet',
25014
+ name: 'Deprecated SKALE Europa Hub Testnet',
25015
+ title: 'Deprecated Europa Hub Testnet',
25016
+ status: 'deprecated',
24909
25017
  chain: 'staging-legal-crazy-castor',
24910
25018
  icon: 'europa',
24911
25019
  rpc: [
@@ -24914,7 +25022,7 @@ const chainArray = [
24914
25022
  faucets: [ 'https://sfuel.dirtroad.dev/staging' ],
24915
25023
  nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 },
24916
25024
  infoURL: 'https://europahub.network/',
24917
- shortName: 'europa-testnet',
25025
+ shortName: 'deprecated-europa-testnet',
24918
25026
  chainId: 476158412,
24919
25027
  networkId: 476158412,
24920
25028
  slip44: 1,
@@ -24945,8 +25053,9 @@ const chainArray = [
24945
25053
  ]
24946
25054
  },
24947
25055
  {
24948
- name: 'SKALE Nebula Hub Testnet',
25056
+ name: 'Deprecated SKALE Nebula Hub Testnet',
24949
25057
  chain: 'staging-faint-slimy-achird',
25058
+ status: 'deprecated',
24950
25059
  icon: 'nebula',
24951
25060
  rpc: [
24952
25061
  'https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird',
@@ -24955,7 +25064,7 @@ const chainArray = [
24955
25064
  faucets: [ 'https://sfuel.dirtroad.dev/staging' ],
24956
25065
  nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 },
24957
25066
  infoURL: 'https://nebulachain.io/',
24958
- shortName: 'nebula-testnet',
25067
+ shortName: 'deprecated-nebula-testnet',
24959
25068
  chainId: 503129905,
24960
25069
  networkId: 503129905,
24961
25070
  slip44: 1,
@@ -24986,6 +25095,27 @@ const chainArray = [
24986
25095
  }
24987
25096
  ]
24988
25097
  },
25098
+ {
25099
+ name: 'SKALE Calypso Hub Testnet',
25100
+ title: 'SKALE Calypso Hub Testnet',
25101
+ chain: 'giant-half-dual-testnet',
25102
+ icon: 'calypso',
25103
+ rpc: [ 'https://testnet.skalenodes.com/v1/giant-half-dual-testnet' ],
25104
+ faucets: [ 'https://www.sfuelstation.com/' ],
25105
+ nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 },
25106
+ infoURL: 'https://calypsohub.network/',
25107
+ shortName: 'calypso-testnet',
25108
+ chainId: 974399131,
25109
+ networkId: 974399131,
25110
+ slip44: 1,
25111
+ explorers: [
25112
+ {
25113
+ name: 'Blockscout',
25114
+ url: 'https://giant-half-dual-testnet.explorer.testnet.skalenodes.com',
25115
+ standard: 'EIP3091'
25116
+ }
25117
+ ]
25118
+ },
24989
25119
  {
24990
25120
  name: 'Zora Sepolia Testnet',
24991
25121
  chain: 'ETH',
@@ -25006,6 +25136,30 @@ const chainArray = [
25006
25136
  }
25007
25137
  ]
25008
25138
  },
25139
+ {
25140
+ name: 'SKALE Titan Hub Testnet',
25141
+ title: 'SKALE Titan Hub Testnet',
25142
+ chain: 'aware-fake-trim-testnet',
25143
+ icon: 'titan',
25144
+ rpc: [
25145
+ 'https://testnet.skalenodes.com/v1/aware-fake-trim-testnet',
25146
+ 'wss://testnet.skalenodes.com/v1/ws/aware-fake-trim-testnet'
25147
+ ],
25148
+ faucets: [ 'https://www.sfuelstation.com/' ],
25149
+ nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 },
25150
+ infoURL: '',
25151
+ shortName: 'titan-testnet',
25152
+ chainId: 1020352220,
25153
+ networkId: 1020352220,
25154
+ slip44: 1,
25155
+ explorers: [
25156
+ {
25157
+ name: 'Blockscout',
25158
+ url: 'https://aware-fake-trim-testnet.explorer.testnet.skalenodes.com',
25159
+ standard: 'EIP3091'
25160
+ }
25161
+ ]
25162
+ },
25009
25163
  {
25010
25164
  name: 'IPOS Network',
25011
25165
  chain: 'IPOS',
@@ -25191,6 +25345,27 @@ const chainArray = [
25191
25345
  }
25192
25346
  ]
25193
25347
  },
25348
+ {
25349
+ name: 'SKALE Europa Hub Testnet',
25350
+ title: 'SKALE Europa Hub Testnet',
25351
+ chain: 'juicy-low-small-testnet',
25352
+ icon: 'europa',
25353
+ rpc: [ 'https://testnet.skalenodes.com/v1/juicy-low-small-testnet' ],
25354
+ faucets: [ 'https://www.sfuelstation.com/' ],
25355
+ nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 },
25356
+ infoURL: 'https://europahub.network/',
25357
+ shortName: 'europa-testnet',
25358
+ chainId: 1444673419,
25359
+ networkId: 1444673419,
25360
+ slip44: 1,
25361
+ explorers: [
25362
+ {
25363
+ name: 'Blockscout',
25364
+ url: 'https://juicy-low-small-testnet.explorer.testnet.skalenodes.com',
25365
+ standard: 'EIP3091'
25366
+ }
25367
+ ]
25368
+ },
25194
25369
  {
25195
25370
  name: 'SKALE Nebula Hub',
25196
25371
  chain: 'green-giddy-denebola',
@@ -25214,8 +25389,9 @@ const chainArray = [
25214
25389
  ]
25215
25390
  },
25216
25391
  {
25217
- name: 'SKALE Titan Hub Testnet',
25392
+ name: 'Deprecated SKALE Titan Hub Testnet',
25218
25393
  chain: 'staging-aware-chief-gianfar',
25394
+ status: 'deprecated',
25219
25395
  icon: 'titan',
25220
25396
  rpc: [
25221
25397
  'https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar',
@@ -25224,7 +25400,7 @@ const chainArray = [
25224
25400
  faucets: [ 'https://sfuel.dirtroad.dev/staging' ],
25225
25401
  nativeCurrency: { name: 'sFUEL', symbol: 'sFUEL', decimals: 18 },
25226
25402
  infoURL: '',
25227
- shortName: 'titan-testnet',
25403
+ shortName: 'deprecated-titan-testnet',
25228
25404
  chainId: 1517929550,
25229
25405
  networkId: 1517929550,
25230
25406
  slip44: 1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.342",
3
+ "version": "0.0.344",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {