eth-chainlist 0.0.195 → 0.0.197

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 +227 -32
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.197 (2023-07-28)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.196 ([71e4f8f](https://github.com/poowf/eth-chainlist/commit/71e4f8fd4c2112d66c82ff25aacd32144c3a12fa))
9
+ * update chain data ([edcf6ea](https://github.com/poowf/eth-chainlist/commit/edcf6ea5223b31eebf7e1a2dbb85c20551dc1e49))
10
+
11
+ ### 0.0.196 (2023-07-27)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.195 ([04d1739](https://github.com/poowf/eth-chainlist/commit/04d173940b4c109e0bc193e361ee84f5fe8bfc17))
17
+ * update chain data ([4b6155b](https://github.com/poowf/eth-chainlist/commit/4b6155b996800ce7375fbdbd0c021641e06aecde))
18
+
3
19
  ### 0.0.195 (2023-07-26)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -24,6 +24,12 @@ const chainArray = [
24
24
  name: 'etherscan',
25
25
  url: 'https://etherscan.io',
26
26
  standard: 'EIP3091'
27
+ },
28
+ {
29
+ name: 'blockscout',
30
+ url: 'https://eth.blockscout.com',
31
+ icon: 'blockscout',
32
+ standard: 'EIP3091'
27
33
  }
28
34
  ]
29
35
  },
@@ -117,6 +123,12 @@ const chainArray = [
117
123
  name: 'etherscan-goerli',
118
124
  url: 'https://goerli.etherscan.io',
119
125
  standard: 'EIP3091'
126
+ },
127
+ {
128
+ name: 'blockscout-goerli',
129
+ url: 'https://eth-goerli.blockscout.com',
130
+ icon: 'blockscout',
131
+ standard: 'EIP3091'
120
132
  }
121
133
  ]
122
134
  },
@@ -183,7 +195,10 @@ const chainArray = [
183
195
  {
184
196
  name: 'OP Mainnet',
185
197
  chain: 'ETH',
186
- rpc: [ 'https://mainnet.optimism.io/' ],
198
+ rpc: [
199
+ 'https://mainnet.optimism.io',
200
+ 'https://optimism.publicnode.com'
201
+ ],
187
202
  faucets: [],
188
203
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
189
204
  infoURL: 'https://optimism.io',
@@ -195,6 +210,12 @@ const chainArray = [
195
210
  name: 'etherscan',
196
211
  url: 'https://optimistic.etherscan.io',
197
212
  standard: 'EIP3091'
213
+ },
214
+ {
215
+ name: 'blockscout',
216
+ url: 'https://optimism.blockscout.com',
217
+ icon: 'blockscout',
218
+ standard: 'EIP3091'
198
219
  }
199
220
  ]
200
221
  },
@@ -1409,7 +1430,8 @@ const chainArray = [
1409
1430
  {
1410
1431
  name: 'blockscout',
1411
1432
  url: 'https://blockscout.com/poa/sokol',
1412
- standard: 'none'
1433
+ icon: 'blockscout',
1434
+ standard: 'EIP3091'
1413
1435
  }
1414
1436
  ]
1415
1437
  },
@@ -1469,22 +1491,28 @@ const chainArray = [
1469
1491
  ]
1470
1492
  },
1471
1493
  {
1472
- name: 'Zenith Testnet (Vilnius)',
1473
- chain: 'Zenith',
1474
- rpc: [ 'https://vilnius.zenithchain.co/http' ],
1475
- faucets: [ 'https://faucet.zenithchain.co/' ],
1476
- nativeCurrency: { name: 'Vilnius', symbol: 'VIL', decimals: 18 },
1477
- infoURL: 'https://www.zenithchain.co/',
1494
+ name: 'Japan Open Chain Mainnet',
1495
+ chain: 'JOC',
1496
+ rpc: [
1497
+ 'https://rpc-1.japanopenchain.org:8545',
1498
+ 'https://rpc-2.japanopenchain.org:8545'
1499
+ ],
1500
+ faucets: [],
1501
+ nativeCurrency: { name: 'Japan Open Chain Token', symbol: 'JOC', decimals: 18 },
1502
+ infoURL: 'https://www.japanopenchain.org/',
1503
+ shortName: 'joc',
1478
1504
  chainId: 81,
1479
1505
  networkId: 81,
1480
- shortName: 'VIL',
1506
+ icon: 'joc',
1481
1507
  explorers: [
1482
1508
  {
1483
- name: 'vilnius scan',
1484
- url: 'https://vilnius.scan.zenithchain.co',
1485
- standard: 'EIP3091'
1509
+ name: 'Block Explorer',
1510
+ url: 'https://explorer.japanopenchain.org',
1511
+ standard: 'EIP3091',
1512
+ icon: 'joc'
1486
1513
  }
1487
- ]
1514
+ ],
1515
+ redFlags: [ 'reusedChainId' ]
1488
1516
  },
1489
1517
  {
1490
1518
  name: 'Meter Mainnet',
@@ -1831,7 +1859,8 @@ const chainArray = [
1831
1859
  {
1832
1860
  name: 'blockscout',
1833
1861
  url: 'https://blockscout.com/poa/core',
1834
- standard: 'none'
1862
+ icon: 'blockscout',
1863
+ standard: 'EIP3091'
1835
1864
  }
1836
1865
  ]
1837
1866
  },
@@ -1869,7 +1898,7 @@ const chainArray = [
1869
1898
  },
1870
1899
  {
1871
1900
  name: 'blockscout',
1872
- url: 'https://blockscout.com/xdai/mainnet',
1901
+ url: 'https://gnosis.blockscout.com',
1873
1902
  icon: 'blockscout',
1874
1903
  standard: 'EIP3091'
1875
1904
  }
@@ -2944,8 +2973,9 @@ const chainArray = [
2944
2973
  {
2945
2974
  name: 'Bitnet',
2946
2975
  chain: 'BTN',
2947
- rpc: [ 'https://rpc.bitnet.money' ],
2948
- faucets: [ 'https://bitnet.money/forum/showthread.php?tid=2' ],
2976
+ icon: 'bitnet',
2977
+ rpc: [ 'https://rpc.bitnet.money', 'https://rpc.btnscan.com' ],
2978
+ faucets: [],
2949
2979
  nativeCurrency: { name: 'Bitnet', symbol: 'BTN', decimals: 18 },
2950
2980
  infoURL: 'https://bitnet.money',
2951
2981
  shortName: 'BTN',
@@ -3780,6 +3810,12 @@ const chainArray = [
3780
3810
  url: 'https://shiden.subscan.io',
3781
3811
  standard: 'none',
3782
3812
  icon: 'subscan'
3813
+ },
3814
+ {
3815
+ name: 'blockscout',
3816
+ url: 'https://blockscout.com/shiden',
3817
+ icon: 'blockscout',
3818
+ standard: 'EIP3091'
3783
3819
  }
3784
3820
  ]
3785
3821
  },
@@ -3880,7 +3916,11 @@ const chainArray = [
3880
3916
  chainId: 369,
3881
3917
  networkId: 369,
3882
3918
  infoURL: 'https://pulsechain.com/',
3883
- rpc: [ 'https://rpc.pulsechain.com/', 'wss://rpc.pulsechain.com/' ],
3919
+ rpc: [
3920
+ 'https://rpc.pulsechain.com',
3921
+ 'wss://rpc.pulsechain.com',
3922
+ 'https://pulsechain.publicnode.com'
3923
+ ],
3884
3924
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
3885
3925
  faucets: [],
3886
3926
  ens: { registry: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e' },
@@ -4021,13 +4061,24 @@ const chainArray = [
4021
4061
  {
4022
4062
  name: 'Optimism Goerli Testnet',
4023
4063
  chain: 'ETH',
4024
- rpc: [ 'https://goerli.optimism.io/' ],
4064
+ rpc: [
4065
+ 'https://goerli.optimism.io',
4066
+ 'https://optimism-goerli.publicnode.com'
4067
+ ],
4025
4068
  faucets: [],
4026
4069
  nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
4027
4070
  infoURL: 'https://optimism.io',
4028
4071
  shortName: 'ogor',
4029
4072
  chainId: 420,
4030
- networkId: 420
4073
+ networkId: 420,
4074
+ explorers: [
4075
+ {
4076
+ name: 'blockscout',
4077
+ url: 'https://optimism-goerli.blockscout.com',
4078
+ icon: 'blockscout',
4079
+ standard: 'EIP3091'
4080
+ }
4081
+ ]
4031
4082
  },
4032
4083
  {
4033
4084
  name: 'PGN (Public Goods Network)',
@@ -4410,6 +4461,12 @@ const chainArray = [
4410
4461
  url: 'https://astar.subscan.io',
4411
4462
  standard: 'none',
4412
4463
  icon: 'subscan'
4464
+ },
4465
+ {
4466
+ name: 'blockscout',
4467
+ url: 'https://blockscout.com/astar',
4468
+ icon: 'blockscout',
4469
+ standard: 'EIP3091'
4413
4470
  }
4414
4471
  ]
4415
4472
  },
@@ -5341,7 +5398,8 @@ const chainArray = [
5341
5398
  infoURL: 'https://pulsechain.com',
5342
5399
  rpc: [
5343
5400
  'https://rpc.v4.testnet.pulsechain.com/',
5344
- 'wss://rpc.v4.testnet.pulsechain.com/'
5401
+ 'wss://rpc.v4.testnet.pulsechain.com/',
5402
+ 'https://pulsechain-testnet.publicnode.com'
5345
5403
  ],
5346
5404
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
5347
5405
  faucets: [ 'https://faucet.v4.testnet.pulsechain.com/' ],
@@ -6979,7 +7037,7 @@ const chainArray = [
6979
7037
  title: 'Tenet Mainnet',
6980
7038
  chain: 'TENET',
6981
7039
  icon: 'tenet',
6982
- rpc: [ 'https://rpc.tenet.org' ],
7040
+ rpc: [ 'https://rpc.tenet.org', 'https://tenet-evm.publicnode.com' ],
6983
7041
  faucets: [],
6984
7042
  nativeCurrency: { name: 'TENET', symbol: 'TENET', decimals: 18 },
6985
7043
  infoURL: 'https://tenet.org/',
@@ -8343,7 +8401,8 @@ const chainArray = [
8343
8401
  'https://evm.kava.io',
8344
8402
  'https://evm2.kava.io',
8345
8403
  'wss://wevm.kava.io',
8346
- 'wss://wevm2.kava.io'
8404
+ 'wss://wevm2.kava.io',
8405
+ 'https://kava-evm.publicnode.com'
8347
8406
  ],
8348
8407
  faucets: [],
8349
8408
  nativeCurrency: { name: 'Kava', symbol: 'KAVA', decimals: 18 },
@@ -9819,7 +9878,7 @@ const chainArray = [
9819
9878
  name: 'Mantle',
9820
9879
  chain: 'ETH',
9821
9880
  icon: 'mantle',
9822
- rpc: [ 'https://rpc.mantle.xyz' ],
9881
+ rpc: [ 'https://rpc.mantle.xyz', 'https://mantle.publicnode.com' ],
9823
9882
  faucets: [],
9824
9883
  nativeCurrency: { name: 'Mantle', symbol: 'MNT', decimals: 18 },
9825
9884
  infoURL: 'https://mantle.xyz',
@@ -10375,7 +10434,10 @@ const chainArray = [
10375
10434
  {
10376
10435
  name: 'IRIShub',
10377
10436
  chain: 'IRIShub',
10378
- rpc: [ 'https://evmrpc.irishub-1.irisnet.org' ],
10437
+ rpc: [
10438
+ 'https://evmrpc.irishub-1.irisnet.org',
10439
+ 'https://iris-evm.publicnode.com'
10440
+ ],
10379
10441
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
10380
10442
  faucets: [],
10381
10443
  nativeCurrency: { name: 'Eris', symbol: 'ERIS', decimals: 18 },
@@ -10487,6 +10549,12 @@ const chainArray = [
10487
10549
  name: 'ZetaChain Athens Testnet Explorer',
10488
10550
  url: 'https://explorer.athens.zetachain.com',
10489
10551
  standard: 'none'
10552
+ },
10553
+ {
10554
+ name: 'blockscout',
10555
+ url: 'https://zetachain-athens-3.blockscout.com',
10556
+ icon: 'blockscout',
10557
+ standard: 'EIP3091'
10490
10558
  }
10491
10559
  ]
10492
10560
  },
@@ -11229,7 +11297,8 @@ const chainArray = [
11229
11297
  {
11230
11298
  name: 'basescout',
11231
11299
  url: 'https://base.blockscout.com',
11232
- standard: 'none'
11300
+ icon: 'blockscout',
11301
+ standard: 'EIP3091'
11233
11302
  }
11234
11303
  ],
11235
11304
  status: 'active'
@@ -11833,6 +11902,47 @@ const chainArray = [
11833
11902
  networkId: 9792,
11834
11903
  explorers: []
11835
11904
  },
11905
+ {
11906
+ name: 'Mind Smart Chain Testnet',
11907
+ chain: 'tMIND',
11908
+ icon: 'mindchain',
11909
+ rpc: [ 'https://testnet-msc.mindchain.info/' ],
11910
+ faucets: [ 'https://faucet.mindchain.info/' ],
11911
+ nativeCurrency: { name: 'MIND Coin', symbol: 'tMIND', decimals: 18 },
11912
+ infoURL: 'https://mindscan.info',
11913
+ shortName: 'tMIND',
11914
+ chainId: 9977,
11915
+ networkId: 9977,
11916
+ explorers: [
11917
+ {
11918
+ name: 'Mind Chain explorer',
11919
+ url: 'https://testnet.mindscan.info',
11920
+ standard: 'EIP3091'
11921
+ }
11922
+ ]
11923
+ },
11924
+ {
11925
+ name: 'Mind Smart Chain Mainnet',
11926
+ chain: 'MIND',
11927
+ icon: 'mindchain',
11928
+ rpc: [
11929
+ 'https://rpc-msc.mindchain.info/',
11930
+ 'https://seednode.mindchain.info'
11931
+ ],
11932
+ faucets: [],
11933
+ nativeCurrency: { name: 'MIND Coin', symbol: 'MIND', decimals: 18 },
11934
+ infoURL: 'https://mindscan.info',
11935
+ shortName: 'MIND',
11936
+ chainId: 9996,
11937
+ networkId: 9996,
11938
+ explorers: [
11939
+ {
11940
+ name: 'Mind Chain explorer',
11941
+ url: 'https://mainnet.mindscan.info',
11942
+ standard: 'EIP3091'
11943
+ }
11944
+ ]
11945
+ },
11836
11946
  {
11837
11947
  name: 'AltLayer Testnet',
11838
11948
  chain: 'ETH',
@@ -11963,10 +12073,16 @@ const chainArray = [
11963
12073
  networkId: 10200,
11964
12074
  explorers: [
11965
12075
  {
11966
- name: 'blockscout',
12076
+ name: 'blockscout-chiadochain',
11967
12077
  url: 'https://blockscout.chiadochain.net',
11968
12078
  icon: 'blockscout',
11969
12079
  standard: 'EIP3091'
12080
+ },
12081
+ {
12082
+ name: 'blockscout',
12083
+ url: 'https://gnosis-chiado.blockscout.com',
12084
+ icon: 'blockscout',
12085
+ standard: 'EIP3091'
11970
12086
  }
11971
12087
  ]
11972
12088
  },
@@ -12187,7 +12303,10 @@ const chainArray = [
12187
12303
  {
12188
12304
  name: 'Haqq Network',
12189
12305
  chain: 'Haqq',
12190
- rpc: [ 'https://rpc.eth.haqq.network' ],
12306
+ rpc: [
12307
+ 'https://rpc.eth.haqq.network',
12308
+ 'https://haqq-evm.publicnode.com'
12309
+ ],
12191
12310
  faucets: [],
12192
12311
  nativeCurrency: { name: 'Islamic Coin', symbol: 'ISLM', decimals: 18 },
12193
12312
  infoURL: 'https://islamiccoin.net',
@@ -12753,6 +12872,26 @@ const chainArray = [
12753
12872
  }
12754
12873
  ]
12755
12874
  },
12875
+ {
12876
+ name: 'Smart Trade Networks',
12877
+ chain: 'Smart Trade Networks',
12878
+ rpc: [ 'https://beefledgerwallet.com:8544' ],
12879
+ faucets: [],
12880
+ nativeCurrency: { name: 'STN', symbol: 'STN', decimals: 18 },
12881
+ infoURL: 'https://www.smarttradenetworks.com',
12882
+ shortName: 'STN',
12883
+ chainId: 18122,
12884
+ networkId: 18122,
12885
+ icon: 'stn',
12886
+ explorers: [
12887
+ {
12888
+ name: 'stnscan',
12889
+ url: 'https://stnscan.com',
12890
+ icon: 'stn',
12891
+ standard: 'none'
12892
+ }
12893
+ ]
12894
+ },
12756
12895
  {
12757
12896
  name: 'Proof Of Memes',
12758
12897
  title: 'Proof Of Memes Mainnet',
@@ -13558,7 +13697,8 @@ const chainArray = [
13558
13697
  rpc: [
13559
13698
  'https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}',
13560
13699
  'https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}',
13561
- 'https://arb1.arbitrum.io/rpc'
13700
+ 'https://arb1.arbitrum.io/rpc',
13701
+ 'https://arbitrum-one.publicnode.com'
13562
13702
  ],
13563
13703
  faucets: [],
13564
13704
  explorers: [
@@ -13587,7 +13727,10 @@ const chainArray = [
13587
13727
  chain: 'ETH',
13588
13728
  networkId: 42170,
13589
13729
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
13590
- rpc: [ 'https://nova.arbitrum.io/rpc' ],
13730
+ rpc: [
13731
+ 'https://nova.arbitrum.io/rpc',
13732
+ 'https://arbitrum-nova.publicnode.com'
13733
+ ],
13591
13734
  faucets: [],
13592
13735
  explorers: [
13593
13736
  {
@@ -15026,7 +15169,8 @@ const chainArray = [
15026
15169
  {
15027
15170
  name: 'basescout',
15028
15171
  url: 'https://base-goerli.blockscout.com',
15029
- standard: 'none'
15172
+ icon: 'blockscout',
15173
+ standard: 'EIP3091'
15030
15174
  }
15031
15175
  ]
15032
15176
  },
@@ -16143,6 +16287,48 @@ const chainArray = [
16143
16287
  }
16144
16288
  ]
16145
16289
  },
16290
+ {
16291
+ name: 'Reapchain Mainnet',
16292
+ chain: 'REAP',
16293
+ rpc: [ 'https://rpc.reapchain.org' ],
16294
+ faucets: [],
16295
+ nativeCurrency: { name: 'Reap', symbol: 'REAP', decimals: 18 },
16296
+ features: [],
16297
+ infoURL: 'https://reapchain.com',
16298
+ shortName: 'reap',
16299
+ chainId: 221230,
16300
+ networkId: 221230,
16301
+ icon: 'reapchain',
16302
+ explorers: [
16303
+ {
16304
+ name: 'Reapchain Dashboard',
16305
+ url: 'https://dashboard.reapchain.org',
16306
+ icon: 'reapchain',
16307
+ standard: 'none'
16308
+ }
16309
+ ]
16310
+ },
16311
+ {
16312
+ name: 'Reapchain Testnet',
16313
+ chain: 'REAP',
16314
+ rpc: [ 'https://test-rpc.reapchain.org' ],
16315
+ faucets: [ 'http://faucet.reapchain.com' ],
16316
+ nativeCurrency: { name: 'test-Reap', symbol: 'tREAP', decimals: 18 },
16317
+ features: [],
16318
+ infoURL: 'https://reapchain.com',
16319
+ shortName: 'reap-testnet',
16320
+ chainId: 221231,
16321
+ networkId: 221231,
16322
+ icon: 'reapchain',
16323
+ explorers: [
16324
+ {
16325
+ name: 'Reapchain Testnet Dashboard',
16326
+ url: 'https://test-dashboard.reapchain.org',
16327
+ icon: 'reapchain',
16328
+ standard: 'none'
16329
+ }
16330
+ ]
16331
+ },
16146
16332
  {
16147
16333
  name: 'Taf ECO Chain Mainnet',
16148
16334
  chain: 'Taf ECO Chain',
@@ -16604,7 +16790,10 @@ const chainArray = [
16604
16790
  chain: 'ETH',
16605
16791
  networkId: 421613,
16606
16792
  nativeCurrency: { name: 'Arbitrum Goerli Ether', symbol: 'AGOR', decimals: 18 },
16607
- rpc: [ 'https://goerli-rollup.arbitrum.io/rpc/' ],
16793
+ rpc: [
16794
+ 'https://goerli-rollup.arbitrum.io/rpc',
16795
+ 'https://arbitrum-goerli.publicnode.com'
16796
+ ],
16608
16797
  faucets: [],
16609
16798
  infoURL: 'https://arbitrum.io/',
16610
16799
  explorers: [
@@ -18081,6 +18270,12 @@ const chainArray = [
18081
18270
  name: 'neonscan',
18082
18271
  url: 'https://devnet.neonscan.org',
18083
18272
  standard: 'EIP3091'
18273
+ },
18274
+ {
18275
+ name: 'blockscout',
18276
+ url: 'https://neon-devnet.blockscout.com',
18277
+ icon: 'blockscout',
18278
+ standard: 'EIP3091'
18084
18279
  }
18085
18280
  ]
18086
18281
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.195",
3
+ "version": "0.0.197",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {