eth-chainlist 0.0.100 → 0.0.102

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 +153 -18
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.102 (2023-03-17)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.101 ([297f88f](https://github.com/poowf/eth-chainlist/commit/297f88f81f90039d1d4d4ac27c2e50422b8a7538))
9
+ * update chain data ([1421c46](https://github.com/poowf/eth-chainlist/commit/1421c4665b1314dd1a81617822a0902cf58588b4))
10
+
11
+ ### 0.0.101 (2023-03-16)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.100 ([c28f892](https://github.com/poowf/eth-chainlist/commit/c28f8922a3241a156f3c2bfc01a077ec139188e1))
17
+ * update chain data ([0c0adf9](https://github.com/poowf/eth-chainlist/commit/0c0adf9fdafdfa51f26847f8cbb9ac24d0b803b0))
18
+
3
19
  ### 0.0.100 (2023-03-15)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -3119,7 +3119,11 @@ const chainArray = [
3119
3119
  name: 'Filecoin - Mainnet',
3120
3120
  chain: 'FIL',
3121
3121
  icon: 'filecoin',
3122
- rpc: [ 'https://api.node.glif.io/', 'https://rpc.ankr.com/filecoin' ],
3122
+ rpc: [
3123
+ 'https://api.node.glif.io/',
3124
+ 'https://rpc.ankr.com/filecoin',
3125
+ 'https://filecoin-mainnet.chainstacklabs.com/rpc/v1'
3126
+ ],
3123
3127
  faucets: [],
3124
3128
  nativeCurrency: { name: 'filecoin', symbol: 'FIL', decimals: 18 },
3125
3129
  infoURL: 'https://filecoin.io',
@@ -3144,8 +3148,8 @@ const chainArray = [
3144
3148
  standard: 'EIP3091'
3145
3149
  },
3146
3150
  {
3147
- name: 'Filmine',
3148
- url: 'https://explorer.filmine.io',
3151
+ name: 'Dev.storage',
3152
+ url: 'https://dev.storage',
3149
3153
  standard: 'none'
3150
3154
  },
3151
3155
  { name: 'Filscan', url: 'https://filscan.io', standard: 'none' },
@@ -3465,6 +3469,19 @@ const chainArray = [
3465
3469
  }
3466
3470
  ]
3467
3471
  },
3472
+ {
3473
+ name: 'LA Testnet',
3474
+ chain: 'LATestnet',
3475
+ rpc: [ 'https://rpc.testnet.lachain.network' ],
3476
+ faucets: [],
3477
+ nativeCurrency: { name: 'Test La Coin', symbol: 'TLA', decimals: 18 },
3478
+ features: [ { name: 'EIP155' } ],
3479
+ infoURL: '',
3480
+ shortName: 'latestnet',
3481
+ chainId: 418,
3482
+ networkId: 418,
3483
+ explorers: []
3484
+ },
3468
3485
  {
3469
3486
  name: 'Optimism Goerli Testnet',
3470
3487
  chain: 'ETH',
@@ -5048,7 +5065,7 @@ const chainArray = [
5048
5065
  name: 'Core Blockchain Mainnet',
5049
5066
  chain: 'Core',
5050
5067
  icon: 'core',
5051
- rpc: [ 'https://rpc.coredao.org/' ],
5068
+ rpc: [ 'https://rpc.coredao.org/', 'https://rpc-core.icecreamswap.com' ],
5052
5069
  faucets: [],
5053
5070
  nativeCurrency: {
5054
5071
  name: 'Core Blockchain Native Token',
@@ -5731,6 +5748,45 @@ const chainArray = [
5731
5748
  ],
5732
5749
  status: 'deprecated'
5733
5750
  },
5751
+ {
5752
+ name: 'Polygon zkEVM Testnet Pre Audit-Upgraded',
5753
+ title: 'Polygon zkEVM Testnet Pre Audit-Upgraded',
5754
+ chain: 'Polygon',
5755
+ rpc: [],
5756
+ faucets: [],
5757
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
5758
+ infoURL: 'https://polygon.technology/solutions/polygon-zkevm/',
5759
+ shortName: 'testnet-zkEVM-mango-pre-audit-upgraded',
5760
+ chainId: 1422,
5761
+ networkId: 1422,
5762
+ explorers: [
5763
+ {
5764
+ name: 'Polygon zkEVM explorer',
5765
+ url: 'https://explorer.public.zkevm-test.net',
5766
+ standard: 'EIP3091'
5767
+ }
5768
+ ],
5769
+ status: 'deprecated'
5770
+ },
5771
+ {
5772
+ name: 'Rikeza Network Mainnet',
5773
+ title: 'Rikeza Network Mainnet',
5774
+ chain: 'Rikeza',
5775
+ rpc: [ 'https://rpc.rikscan.com' ],
5776
+ faucets: [],
5777
+ nativeCurrency: { name: 'Rikeza', symbol: 'RIK', decimals: 18 },
5778
+ infoURL: 'https://rikeza.io',
5779
+ shortName: 'RIK',
5780
+ chainId: 1433,
5781
+ networkId: 1433,
5782
+ explorers: [
5783
+ {
5784
+ name: 'Rikeza Blockchain explorer',
5785
+ url: 'https://rikscan.com',
5786
+ standard: 'EIP3091'
5787
+ }
5788
+ ]
5789
+ },
5734
5790
  {
5735
5791
  name: 'Polygon zkEVM Testnet',
5736
5792
  title: 'Polygon zkEVM Testnet',
@@ -5740,8 +5796,8 @@ const chainArray = [
5740
5796
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
5741
5797
  infoURL: 'https://polygon.technology/solutions/polygon-zkevm/',
5742
5798
  shortName: 'testnet-zkEVM-mango',
5743
- chainId: 1422,
5744
- networkId: 1422,
5799
+ chainId: 1442,
5800
+ networkId: 1442,
5745
5801
  explorers: [
5746
5802
  {
5747
5803
  name: 'Polygon zkEVM explorer',
@@ -6497,26 +6553,63 @@ const chainArray = [
6497
6553
  ]
6498
6554
  },
6499
6555
  {
6500
- name: 'Edgeware Mainnet',
6556
+ name: 'Edgeware EdgeEVM Mainnet',
6501
6557
  chain: 'EDG',
6502
- rpc: [ 'https://mainnet1.edgewa.re' ],
6558
+ icon: 'edgeware',
6559
+ rpc: [
6560
+ 'https://edgeware-evm.jelliedowl.net',
6561
+ 'https://mainnet2.edgewa.re/evm',
6562
+ 'https://mainnet3.edgewa.re/evm',
6563
+ 'https://mainnet4.edgewa.re/evm',
6564
+ 'https://mainnet5.edgewa.re/evm',
6565
+ 'wss://edgeware.jelliedowl.net',
6566
+ 'wss://mainnet2.edgewa.re',
6567
+ 'wss://mainnet3.edgewa.re',
6568
+ 'wss://mainnet4.edgewa.re',
6569
+ 'wss://mainnet5.edgewa.re'
6570
+ ],
6571
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
6503
6572
  faucets: [],
6504
- nativeCurrency: { name: 'Edge', symbol: 'EDG', decimals: 18 },
6505
- infoURL: 'http://edgewa.re',
6573
+ nativeCurrency: { name: 'Edgeware', symbol: 'EDG', decimals: 18 },
6574
+ infoURL: 'https://edgeware.io',
6506
6575
  shortName: 'edg',
6507
6576
  chainId: 2021,
6508
- networkId: 2021
6577
+ networkId: 2021,
6578
+ slip44: 523,
6579
+ explorers: [
6580
+ {
6581
+ name: 'Edgscan by Bharathcoorg',
6582
+ url: 'https://edgscan.live',
6583
+ standard: 'EIP3091'
6584
+ },
6585
+ {
6586
+ name: 'Subscan',
6587
+ url: 'https://edgeware.subscan.io',
6588
+ standard: 'none',
6589
+ icon: 'subscan'
6590
+ }
6591
+ ]
6509
6592
  },
6510
6593
  {
6511
- name: 'Beresheet Testnet',
6594
+ name: 'Beresheet BereEVM Testnet',
6512
6595
  chain: 'EDG',
6513
- rpc: [ 'https://beresheet1.edgewa.re' ],
6596
+ rpc: [
6597
+ 'https://beresheet-evm.jelliedowl.net',
6598
+ 'wss://beresheet.jelliedowl.net'
6599
+ ],
6514
6600
  faucets: [],
6515
- nativeCurrency: { name: 'Testnet Edge', symbol: 'tEDG', decimals: 18 },
6516
- infoURL: 'http://edgewa.re',
6601
+ nativeCurrency: { name: 'Testnet EDG', symbol: 'tEDG', decimals: 18 },
6602
+ infoURL: 'https://edgeware.io/build',
6517
6603
  shortName: 'edgt',
6518
6604
  chainId: 2022,
6519
- networkId: 2022
6605
+ networkId: 2022,
6606
+ explorers: [
6607
+ {
6608
+ name: 'Edgscan by Bharathcoorg',
6609
+ url: 'https://testnet.edgscan.live',
6610
+ standard: 'EIP3091'
6611
+ }
6612
+ ]
6520
6613
  },
6521
6614
  {
6522
6615
  name: 'Taycan Testnet',
@@ -7261,8 +7354,8 @@ const chainArray = [
7261
7354
  standard: 'none'
7262
7355
  },
7263
7356
  {
7264
- name: 'Filmine',
7265
- url: 'https://explorer.filmine.io',
7357
+ name: 'Dev.storage',
7358
+ url: 'https://dev.storage',
7266
7359
  standard: 'none'
7267
7360
  },
7268
7361
  {
@@ -9778,6 +9871,25 @@ const chainArray = [
9778
9871
  ],
9779
9872
  parent: { type: 'L2', chain: 'eip155-43113' }
9780
9873
  },
9874
+ {
9875
+ name: 'Rikeza Network Testnet',
9876
+ title: 'Rikeza Network Testnet',
9877
+ chain: 'Rikeza',
9878
+ rpc: [ 'https://testnet-rpc.rikscan.com' ],
9879
+ faucets: [],
9880
+ nativeCurrency: { name: 'Rikeza', symbol: 'RIK', decimals: 18 },
9881
+ infoURL: 'https://rikeza.io',
9882
+ shortName: 'tRIK',
9883
+ chainId: 12715,
9884
+ networkId: 12715,
9885
+ explorers: [
9886
+ {
9887
+ name: 'Rikeza Blockchain explorer',
9888
+ url: 'https://testnet.rikscan.com',
9889
+ standard: 'EIP3091'
9890
+ }
9891
+ ]
9892
+ },
9781
9893
  {
9782
9894
  name: 'SPS',
9783
9895
  chain: 'SPS',
@@ -10509,6 +10621,24 @@ const chainArray = [
10509
10621
  }
10510
10622
  ]
10511
10623
  },
10624
+ {
10625
+ name: 'Zilliqa EVM Testnet',
10626
+ chain: 'ZIL',
10627
+ rpc: [ 'https://dev-api.zilliqa.com' ],
10628
+ faucets: [ 'https://dev-wallet.zilliqa.com/faucet?network=testnet' ],
10629
+ nativeCurrency: { name: 'Zilliqa', symbol: 'ZIL', decimals: 18 },
10630
+ infoURL: 'https://www.zilliqa.com/',
10631
+ shortName: 'zil-testnet',
10632
+ chainId: 33101,
10633
+ networkId: 33101,
10634
+ explorers: [
10635
+ {
10636
+ name: 'Zilliqa EVM Explorer',
10637
+ url: 'https://evmx.zilliqa.com',
10638
+ standard: 'none'
10639
+ }
10640
+ ]
10641
+ },
10512
10642
  {
10513
10643
  name: 'Aves Mainnet',
10514
10644
  chain: 'AVS',
@@ -12703,6 +12833,11 @@ const chainArray = [
12703
12833
  name: 'Filscout - Calibration',
12704
12834
  url: 'https://calibration.filscout.com/en',
12705
12835
  standard: 'none'
12836
+ },
12837
+ {
12838
+ name: 'Filfox - Calibration',
12839
+ url: 'https://calibration.filfox.info',
12840
+ standard: 'none'
12706
12841
  }
12707
12842
  ]
12708
12843
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.100",
3
+ "version": "0.0.102",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {