eth-chainlist 0.0.343 → 0.0.345

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 +258 -63
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.345 (2024-02-22)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.344 ([d382a95](https://github.com/poowf/eth-chainlist/commit/d382a951ccfb30a50c97cf339b67b3954227104e))
9
+ * update chain data ([8200dc4](https://github.com/poowf/eth-chainlist/commit/8200dc45060a02682bda1ab5ed83880b8c5d9122))
10
+
11
+ ### 0.0.344 (2024-02-21)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.343 ([d475e5c](https://github.com/poowf/eth-chainlist/commit/d475e5cabca254014946b48c68c9d9ea4e21e14d))
17
+ * update chain data ([e603abc](https://github.com/poowf/eth-chainlist/commit/e603abc4ae1ac71302b394b0ea26eee59c8fef2a))
18
+
3
19
  ### 0.0.343 (2024-02-20)
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 },
@@ -3687,6 +3687,26 @@ const chainArray = [
3687
3687
  }
3688
3688
  ]
3689
3689
  },
3690
+ {
3691
+ name: 'ProtoJumbo Testnet',
3692
+ chain: 'Jumbo',
3693
+ rpc: [ 'https://testnode.jumbochain.org' ],
3694
+ faucets: [ 'https://protojumbo.jumbochain.org/faucet-smart' ],
3695
+ nativeCurrency: { name: 'JNFTC', symbol: 'JNFTC', decimals: 18 },
3696
+ features: [ { name: 'EIP155' } ],
3697
+ infoURL: 'https://jumbochain.org',
3698
+ shortName: 'ProtoJumbo',
3699
+ chainId: 234,
3700
+ networkId: 234,
3701
+ slip44: 1,
3702
+ explorers: [
3703
+ {
3704
+ name: 'ProtoJumbo',
3705
+ url: 'https://protojumbo.jumbochain.org',
3706
+ standard: 'EIP3091'
3707
+ }
3708
+ ]
3709
+ },
3690
3710
  {
3691
3711
  name: 'Deamchain Testnet',
3692
3712
  chain: 'Deamchain',
@@ -3793,8 +3813,8 @@ const chainArray = [
3793
3813
  chain: 'FTM',
3794
3814
  rpc: [
3795
3815
  'https://rpc.ftm.tools',
3796
- 'https://fantom.publicnode.com',
3797
- 'wss://fantom.publicnode.com'
3816
+ 'https://fantom-rpc.publicnode.com',
3817
+ 'wss://fantom-rpc.publicnode.com'
3798
3818
  ],
3799
3819
  faucets: [],
3800
3820
  nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
@@ -4689,8 +4709,8 @@ const chainArray = [
4689
4709
  rpc: [
4690
4710
  'https://rpc.pulsechain.com',
4691
4711
  'wss://rpc.pulsechain.com',
4692
- 'https://pulsechain.publicnode.com',
4693
- 'wss://pulsechain.publicnode.com',
4712
+ 'https://pulsechain-rpc.publicnode.com',
4713
+ 'wss://pulsechain-rpc.publicnode.com',
4694
4714
  'https://rpc-pulsechain.g4mm4.io',
4695
4715
  'wss://rpc-pulsechain.g4mm4.io'
4696
4716
  ],
@@ -4930,8 +4950,8 @@ const chainArray = [
4930
4950
  chain: 'ETH',
4931
4951
  rpc: [
4932
4952
  'https://goerli.optimism.io',
4933
- 'https://optimism-goerli.publicnode.com',
4934
- 'wss://optimism-goerli.publicnode.com',
4953
+ 'https://optimism-goerli-rpc.publicnode.com',
4954
+ 'wss://optimism-goerli-rpc.publicnode.com',
4935
4955
  'https://optimism-goerli.gateway.tenderly.co',
4936
4956
  'wss://optimism-goerli.gateway.tenderly.co'
4937
4957
  ],
@@ -6850,8 +6870,8 @@ const chainArray = [
6850
6870
  rpc: [
6851
6871
  'https://rpc.v4.testnet.pulsechain.com',
6852
6872
  'wss://rpc.v4.testnet.pulsechain.com',
6853
- 'https://pulsechain-testnet.publicnode.com',
6854
- 'wss://pulsechain-testnet.publicnode.com',
6873
+ 'https://pulsechain-testnet-rpc.publicnode.com',
6874
+ 'wss://pulsechain-testnet-rpc.publicnode.com',
6855
6875
  'https://rpc-testnet-pulsechain.g4mm4.io',
6856
6876
  'wss://rpc-testnet-pulsechain.g4mm4.io'
6857
6877
  ],
@@ -7593,7 +7613,11 @@ const chainArray = [
7593
7613
  {
7594
7614
  name: 'Dymension',
7595
7615
  chain: 'Dymension',
7596
- rpc: [ 'https://dymension-evm.blockpi.network/v1/rpc/public' ],
7616
+ rpc: [
7617
+ 'https://dymension-evm.blockpi.network/v1/rpc/public',
7618
+ 'https://dymension-evm-rpc.publicnode.com',
7619
+ 'wss://dymension-evm-rpc.publicnode.com'
7620
+ ],
7597
7621
  faucets: [],
7598
7622
  nativeCurrency: { name: 'DYM', symbol: 'DYM', decimals: 18 },
7599
7623
  infoURL: 'https://dymension.xyz',
@@ -8029,6 +8053,25 @@ const chainArray = [
8029
8053
  }
8030
8054
  ]
8031
8055
  },
8056
+ {
8057
+ name: 'Hybrid Testnet',
8058
+ chain: '$HYB',
8059
+ icon: 'hybridIcon',
8060
+ rpc: [ 'https://testnet-rpc.buildonhybrid.com' ],
8061
+ faucets: [],
8062
+ nativeCurrency: { name: 'Hybrid', symbol: '$HYB', decimals: 18 },
8063
+ infoURL: 'https://buildonhybrid.com',
8064
+ shortName: 'hyb',
8065
+ chainId: 1224,
8066
+ networkId: 1224,
8067
+ explorers: [
8068
+ {
8069
+ name: 'Hybrid Testnet',
8070
+ url: 'https://alphatestnet.buildonhybrid.com',
8071
+ standard: 'EIP3091'
8072
+ }
8073
+ ]
8074
+ },
8032
8075
  {
8033
8076
  name: 'Exzo Network Mainnet',
8034
8077
  chain: 'EXZO',
@@ -8235,8 +8278,8 @@ const chainArray = [
8235
8278
  rpc: [
8236
8279
  'https://rpc.api.moonbeam.network',
8237
8280
  'wss://wss.api.moonbeam.network',
8238
- 'https://moonbeam.publicnode.com',
8239
- 'wss://moonbeam.publicnode.com'
8281
+ 'https://moonbeam-rpc.publicnode.com',
8282
+ 'wss://moonbeam-rpc.publicnode.com'
8240
8283
  ],
8241
8284
  faucets: [],
8242
8285
  nativeCurrency: { name: 'Glimmer', symbol: 'GLMR', decimals: 18 },
@@ -8258,8 +8301,8 @@ const chainArray = [
8258
8301
  rpc: [
8259
8302
  'https://rpc.api.moonriver.moonbeam.network',
8260
8303
  'wss://wss.api.moonriver.moonbeam.network',
8261
- 'https://moonriver.publicnode.com',
8262
- 'wss://moonriver.publicnode.com'
8304
+ 'https://moonriver-rpc.publicnode.com',
8305
+ 'wss://moonriver-rpc.publicnode.com'
8263
8306
  ],
8264
8307
  faucets: [],
8265
8308
  nativeCurrency: { name: 'Moonriver', symbol: 'MOVR', decimals: 18 },
@@ -8781,6 +8824,28 @@ const chainArray = [
8781
8824
  }
8782
8825
  ]
8783
8826
  },
8827
+ {
8828
+ name: 'Vitruveo Mainnet',
8829
+ title: 'Vitruveo is a blockchain for Creators',
8830
+ chain: 'Vitruveo',
8831
+ rpc: [ 'https://rpc.vitruveo.xyz' ],
8832
+ faucets: [],
8833
+ nativeCurrency: { name: 'Vitruveo Coin', symbol: 'VTRU', decimals: 18 },
8834
+ features: [ { name: 'EIP155' } ],
8835
+ infoURL: 'https://www.vitruveo.xyz',
8836
+ shortName: 'vitruveo',
8837
+ chainId: 1490,
8838
+ networkId: 1490,
8839
+ icon: 'vitruveo',
8840
+ explorers: [
8841
+ {
8842
+ name: 'Vitruveo Explorer',
8843
+ url: 'https://explorer.vitruveo.xyz',
8844
+ icon: 'vitruveo',
8845
+ standard: 'EIP3091'
8846
+ }
8847
+ ]
8848
+ },
8784
8849
  {
8785
8850
  name: 'BEVM Canary',
8786
8851
  chain: 'ChainX',
@@ -9529,6 +9594,21 @@ const chainArray = [
9529
9594
  faucets: [],
9530
9595
  infoURL: ''
9531
9596
  },
9597
+ {
9598
+ name: 'Selendra Network Testnet',
9599
+ chain: 'tSEL',
9600
+ rpc: [
9601
+ 'https://rpc0-testnet.selendra.org',
9602
+ 'https://rpc1-testnet.selendra.org'
9603
+ ],
9604
+ faucets: [],
9605
+ nativeCurrency: { name: 'Selendra', symbol: 'tSEL', decimals: 18 },
9606
+ infoURL: 'https://selendra.org',
9607
+ shortName: 'tSEL',
9608
+ chainId: 1953,
9609
+ networkId: 1953,
9610
+ icon: 'selendra'
9611
+ },
9532
9612
  {
9533
9613
  name: 'Dexilla Testnet',
9534
9614
  chain: 'Dexilla',
@@ -9554,6 +9634,25 @@ const chainArray = [
9554
9634
  bridges: [ { url: 'https://bridge.dexilla.com' } ]
9555
9635
  }
9556
9636
  },
9637
+ {
9638
+ name: 'Selendra Network Mainnet',
9639
+ chain: 'SEL',
9640
+ rpc: [ 'https://rpc0.selendra.org', 'https://rpc1.selendra.org' ],
9641
+ faucets: [],
9642
+ nativeCurrency: { name: 'Selendra', symbol: 'SEL', decimals: 18 },
9643
+ infoURL: 'https://selendra.org',
9644
+ shortName: 'SEL',
9645
+ chainId: 1961,
9646
+ networkId: 1961,
9647
+ icon: 'selendra',
9648
+ explorers: [
9649
+ {
9650
+ name: 'Selendra Scan',
9651
+ url: 'https://scan.selendra.org',
9652
+ standard: 'none'
9653
+ }
9654
+ ]
9655
+ },
9557
9656
  {
9558
9657
  name: 'Eleanor',
9559
9658
  title: 'Metatime Testnet Eleanor',
@@ -10664,8 +10763,8 @@ const chainArray = [
10664
10763
  'https://kava-rpc.gateway.pokt.network',
10665
10764
  'https://kava-evm.rpc.thirdweb.com',
10666
10765
  'wss://wevm.kava.io',
10667
- 'https://kava-evm.publicnode.com',
10668
- 'wss://kava-evm.publicnode.com',
10766
+ 'https://kava-evm-rpc.publicnode.com',
10767
+ 'wss://kava-evm-rpc.publicnode.com',
10669
10768
  'https://evm.kava-rpc.com',
10670
10769
  'https://rpc.ankr.com/kava_evm',
10671
10770
  'wss://wevm.kava-rpc.com'
@@ -12190,8 +12289,8 @@ const chainArray = [
12190
12289
  chain: 'FTM',
12191
12290
  rpc: [
12192
12291
  'https://rpc.testnet.fantom.network',
12193
- 'https://fantom-testnet.publicnode.com',
12194
- 'wss://fantom-testnet.publicnode.com'
12292
+ 'https://fantom-testnet-rpc.publicnode.com',
12293
+ 'wss://fantom-testnet-rpc.publicnode.com'
12195
12294
  ],
12196
12295
  faucets: [ 'https://faucet.fantom.network' ],
12197
12296
  nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
@@ -12702,6 +12801,20 @@ const chainArray = [
12702
12801
  }
12703
12802
  ]
12704
12803
  },
12804
+ {
12805
+ name: 'Gold Chain',
12806
+ title: 'Gold Chain',
12807
+ chain: 'Gold',
12808
+ rpc: [ 'https://chain-rpc.gold.dev' ],
12809
+ faucets: [],
12810
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
12811
+ infoURL: 'https://gold.dev',
12812
+ shortName: 'gold',
12813
+ chainId: 4653,
12814
+ networkId: 4653,
12815
+ status: 'incubating',
12816
+ icon: 'gold'
12817
+ },
12705
12818
  {
12706
12819
  name: 'IoTeX Network Mainnet',
12707
12820
  chain: 'iotex.io',
@@ -12871,8 +12984,8 @@ const chainArray = [
12871
12984
  icon: 'mantle',
12872
12985
  rpc: [
12873
12986
  'https://rpc.mantle.xyz',
12874
- 'https://mantle.publicnode.com',
12875
- 'wss://mantle.publicnode.com'
12987
+ 'https://mantle-rpc.publicnode.com',
12988
+ 'wss://mantle-rpc.publicnode.com'
12876
12989
  ],
12877
12990
  faucets: [],
12878
12991
  nativeCurrency: { name: 'Mantle', symbol: 'MNT', decimals: 18 },
@@ -13022,8 +13135,8 @@ const chainArray = [
13022
13135
  'https://rpc2.bahamut.io',
13023
13136
  'wss://ws1.sahara.bahamutchain.com',
13024
13137
  'wss://ws2.sahara.bahamutchain.com',
13025
- 'https://bahamut.publicnode.com',
13026
- 'wss://bahamut.publicnode.com'
13138
+ 'https://bahamut-rpc.publicnode.com',
13139
+ 'wss://bahamut-rpc.publicnode.com'
13027
13140
  ],
13028
13141
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
13029
13142
  faucets: [],
@@ -13260,7 +13373,9 @@ const chainArray = [
13260
13373
  'https://opbnb-testnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3',
13261
13374
  'wss://opbnb-testnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3',
13262
13375
  'https://opbnb-testnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5',
13263
- 'wss://opbnb-testnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5'
13376
+ 'wss://opbnb-testnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5',
13377
+ 'https://opbnb-testnet-rpc.publicnode.com',
13378
+ 'wss://opbnb-testnet-rpc.publicnode.com'
13264
13379
  ],
13265
13380
  faucets: [ 'https://testnet.bnbchain.org/faucet-smart' ],
13266
13381
  nativeCurrency: { name: 'BNB Chain Native Token', symbol: 'tBNB', decimals: 18 },
@@ -13315,8 +13430,8 @@ const chainArray = [
13315
13430
  rpc: [
13316
13431
  'https://rpc.tanenbaum.io',
13317
13432
  'wss://rpc.tanenbaum.io/wss',
13318
- 'https://syscoin-tanenbaum-evm.publicnode.com',
13319
- 'wss://syscoin-tanenbaum-evm.publicnode.com'
13433
+ 'https://syscoin-tanenbaum-evm-rpc.publicnode.com',
13434
+ 'wss://syscoin-tanenbaum-evm-rpc.publicnode.com'
13320
13435
  ],
13321
13436
  faucets: [ 'https://faucet.tanenbaum.io' ],
13322
13437
  nativeCurrency: { name: 'Testnet Syscoin', symbol: 'tSYS', decimals: 18 },
@@ -14788,8 +14903,8 @@ const chainArray = [
14788
14903
  'https://developer-access-mainnet.base.org/',
14789
14904
  'https://base.gateway.tenderly.co',
14790
14905
  'wss://base.gateway.tenderly.co',
14791
- 'https://base.publicnode.com',
14792
- 'wss://base.publicnode.com'
14906
+ 'https://base-rpc.publicnode.com',
14907
+ 'wss://base-rpc.publicnode.com'
14793
14908
  ],
14794
14909
  faucets: [],
14795
14910
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
@@ -15916,8 +16031,8 @@ const chainArray = [
15916
16031
  'https://rpc.chiadochain.net',
15917
16032
  'https://rpc.chiado.gnosis.gateway.fm',
15918
16033
  'wss://rpc.chiadochain.net/wss',
15919
- 'https://gnosis-chiado.publicnode.com',
15920
- 'wss://gnosis-chiado.publicnode.com'
16034
+ 'https://gnosis-chiado-rpc.publicnode.com',
16035
+ 'wss://gnosis-chiado-rpc.publicnode.com'
15921
16036
  ],
15922
16037
  faucets: [ 'https://gnosisfaucet.com' ],
15923
16038
  nativeCurrency: { name: 'Chiado xDAI', symbol: 'XDAI', decimals: 18 },
@@ -16248,8 +16363,8 @@ const chainArray = [
16248
16363
  chain: 'Haqq',
16249
16364
  rpc: [
16250
16365
  'https://rpc.eth.haqq.network',
16251
- 'https://haqq-evm.publicnode.com',
16252
- 'wss://haqq-evm.publicnode.com'
16366
+ 'https://haqq-evm-rpc.publicnode.com',
16367
+ 'wss://haqq-evm-rpc.publicnode.com'
16253
16368
  ],
16254
16369
  faucets: [],
16255
16370
  nativeCurrency: { name: 'Islamic Coin', symbol: 'ISLM', decimals: 18 },
@@ -16761,6 +16876,28 @@ const chainArray = [
16761
16876
  }
16762
16877
  ]
16763
16878
  },
16879
+ {
16880
+ name: 'Vitruveo Testnet',
16881
+ title: 'Vitruveo is a blockchain for Creators',
16882
+ chain: 'Vitruveo',
16883
+ rpc: [ 'https://test-rpc.vitruveo.xyz' ],
16884
+ faucets: [ 'https://faucet.vitruveo.xyz' ],
16885
+ nativeCurrency: { name: 'Vitruveo Test Coin', symbol: 'tVTRU', decimals: 18 },
16886
+ features: [ { name: 'EIP155' } ],
16887
+ infoURL: 'https://www.vitruveo.xyz',
16888
+ shortName: 'vitruveo-test',
16889
+ chainId: 14333,
16890
+ networkId: 14333,
16891
+ icon: 'vitruveo',
16892
+ explorers: [
16893
+ {
16894
+ name: 'Vitruveo Testnet Explorer',
16895
+ url: 'https://test-explorer.vitruveo.xyz',
16896
+ icon: 'vitruveo',
16897
+ standard: 'EIP3091'
16898
+ }
16899
+ ]
16900
+ },
16764
16901
  {
16765
16902
  name: 'Humanode Testnet 5 Israfel',
16766
16903
  chain: 'Humanode Testnet 5',
@@ -16966,8 +17103,8 @@ const chainArray = [
16966
17103
  chain: 'ETH',
16967
17104
  rpc: [
16968
17105
  'https://rpc.holesky.ethpandaops.io',
16969
- 'https://ethereum-holesky.publicnode.com',
16970
- 'wss://ethereum-holesky.publicnode.com'
17106
+ 'https://ethereum-holesky-rpc.publicnode.com',
17107
+ 'wss://ethereum-holesky-rpc.publicnode.com'
16971
17108
  ],
16972
17109
  faucets: [
16973
17110
  'https://faucet.holesky.ethpandaops.io',
@@ -17083,6 +17220,26 @@ const chainArray = [
17083
17220
  }
17084
17221
  ]
17085
17222
  },
17223
+ {
17224
+ name: 'KONET Mainnet',
17225
+ chain: 'KONET',
17226
+ rpc: [ 'https://api.kon-wallet.com' ],
17227
+ faucets: [],
17228
+ nativeCurrency: { name: 'KONET', symbol: 'KONET', decimals: 18 },
17229
+ infoURL: 'https://konetmain.com',
17230
+ shortName: 'KONET',
17231
+ chainId: 17217,
17232
+ networkId: 17217,
17233
+ slip44: 1,
17234
+ icon: 'konet',
17235
+ explorers: [
17236
+ {
17237
+ name: 'konet-explorer',
17238
+ url: 'https://explorer.kon-wallet.com',
17239
+ standard: 'EIP3091'
17240
+ }
17241
+ ]
17242
+ },
17086
17243
  {
17087
17244
  name: 'EOS EVM Network',
17088
17245
  chain: 'EOS',
@@ -18627,8 +18784,8 @@ const chainArray = [
18627
18784
  icon: 'avax',
18628
18785
  rpc: [
18629
18786
  'https://api.avax-test.network/ext/bc/C/rpc',
18630
- 'https://avalanche-fuji-c-chain.publicnode.com',
18631
- 'wss://avalanche-fuji-c-chain.publicnode.com'
18787
+ 'https://avalanche-fuji-c-chain-rpc.publicnode.com',
18788
+ 'wss://avalanche-fuji-c-chain-rpc.publicnode.com'
18632
18789
  ],
18633
18790
  faucets: [ 'https://faucet.avax-test.network/' ],
18634
18791
  nativeCurrency: { name: 'Avalanche', symbol: 'AVAX', decimals: 18 },
@@ -18651,8 +18808,8 @@ const chainArray = [
18651
18808
  icon: 'avax',
18652
18809
  rpc: [
18653
18810
  'https://api.avax.network/ext/bc/C/rpc',
18654
- 'https://avalanche-c-chain.publicnode.com',
18655
- 'wss://avalanche-c-chain.publicnode.com'
18811
+ 'https://avalanche-c-chain-rpc.publicnode.com',
18812
+ 'wss://avalanche-c-chain-rpc.publicnode.com'
18656
18813
  ],
18657
18814
  features: [ { name: 'EIP1559' } ],
18658
18815
  faucets: [],
@@ -20196,8 +20353,8 @@ const chainArray = [
20196
20353
  icon: 'polygon',
20197
20354
  rpc: [
20198
20355
  'https://rpc-mumbai.maticvigil.com',
20199
- 'https://polygon-mumbai-bor.publicnode.com',
20200
- 'wss://polygon-mumbai-bor.publicnode.com',
20356
+ 'https://polygon-mumbai-bor-rpc.publicnode.com',
20357
+ 'wss://polygon-mumbai-bor-rpc.publicnode.com',
20201
20358
  'https://polygon-mumbai.gateway.tenderly.co',
20202
20359
  'wss://polygon-mumbai.gateway.tenderly.co'
20203
20360
  ],
@@ -20397,6 +20554,21 @@ const chainArray = [
20397
20554
  networkId: 81363,
20398
20555
  status: 'incubating'
20399
20556
  },
20557
+ {
20558
+ name: 'Blast',
20559
+ status: 'incubating',
20560
+ chain: 'ETH',
20561
+ rpc: [],
20562
+ faucets: [],
20563
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
20564
+ infoURL: 'https://blast.io/',
20565
+ shortName: 'blastmainnet',
20566
+ chainId: 81457,
20567
+ networkId: 81457,
20568
+ icon: 'blast',
20569
+ explorers: [],
20570
+ parent: { type: 'L2', chain: 'eip155-1' }
20571
+ },
20400
20572
  {
20401
20573
  name: 'Quantum Chain Mainnet',
20402
20574
  chain: 'QNET',
@@ -20441,8 +20613,8 @@ const chainArray = [
20441
20613
  'https://goerli.base.org',
20442
20614
  'https://base-goerli.gateway.tenderly.co',
20443
20615
  'wss://base-goerli.gateway.tenderly.co',
20444
- 'https://base-goerli.publicnode.com',
20445
- 'wss://base-goerli.publicnode.com'
20616
+ 'https://base-goerli-rpc.publicnode.com',
20617
+ 'wss://base-goerli-rpc.publicnode.com'
20446
20618
  ],
20447
20619
  faucets: [ 'https://www.coinbase.com/faucets/base-ethereum-goerli-faucet' ],
20448
20620
  nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
@@ -20475,7 +20647,11 @@ const chainArray = [
20475
20647
  {
20476
20648
  name: 'Base Sepolia Testnet',
20477
20649
  chain: 'ETH',
20478
- rpc: [ 'https://sepolia.base.org' ],
20650
+ rpc: [
20651
+ 'https://https://sepolia.base.org',
20652
+ 'https://base-sepolia-rpc.publicnode.com',
20653
+ 'wss://base-sepolia-rpc.publicnode.com'
20654
+ ],
20479
20655
  faucets: [],
20480
20656
  nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
20481
20657
  infoURL: 'https://base.org',
@@ -21089,6 +21265,25 @@ const chainArray = [
21089
21265
  }
21090
21266
  ]
21091
21267
  },
21268
+ {
21269
+ name: 'Masa Testnet',
21270
+ chain: 'MASA',
21271
+ rpc: [ 'https://subnets.avax.network/masatestne/testnet/rpc' ],
21272
+ features: [ { name: 'EIP1559' } ],
21273
+ faucets: [],
21274
+ nativeCurrency: { name: 'Masa Token', symbol: 'MASA', decimals: 18 },
21275
+ infoURL: 'https://masa.finance',
21276
+ shortName: 'masa',
21277
+ chainId: 103454,
21278
+ networkId: 103454,
21279
+ explorers: [
21280
+ {
21281
+ name: 'Masa Testnet Explorer',
21282
+ url: 'https://subnets-test.avax.network/masatestnet',
21283
+ standard: 'EIP3091'
21284
+ }
21285
+ ]
21286
+ },
21092
21287
  {
21093
21288
  name: 'BROChain Mainnet',
21094
21289
  chain: 'BRO',
@@ -24135,8 +24330,8 @@ const chainArray = [
24135
24330
  'wss://sepolia.infura.io/v3/${INFURA_API_KEY}',
24136
24331
  'https://sepolia.gateway.tenderly.co',
24137
24332
  'wss://sepolia.gateway.tenderly.co',
24138
- 'https://ethereum-sepolia.publicnode.com',
24139
- 'wss://ethereum-sepolia.publicnode.com'
24333
+ 'https://ethereum-sepolia-rpc.publicnode.com',
24334
+ 'wss://ethereum-sepolia-rpc.publicnode.com'
24140
24335
  ],
24141
24336
  faucets: [
24142
24337
  'http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.343",
3
+ "version": "0.0.345",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {