eth-chainlist 0.0.505 → 0.0.507

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 +114 -17
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.507 (2024-10-04)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.506 ([b064929](https://github.com/poowf/eth-chainlist/commit/b064929541d1b5b3738d1a4d127a26344cdaab42))
9
+ * update chain data ([2fd92d7](https://github.com/poowf/eth-chainlist/commit/2fd92d7b48a654f0fb11834b1893b1ec024abffd))
10
+
11
+ ### 0.0.506 (2024-10-02)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.505 ([7401540](https://github.com/poowf/eth-chainlist/commit/74015400e3058f2e9491988d9007c19f4be3f601))
17
+ * update chain data ([0136429](https://github.com/poowf/eth-chainlist/commit/0136429eabbd7e638cfcafceefb5aaddc6c89e1e))
18
+
3
19
  ### 0.0.505 (2024-10-01)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -5730,40 +5730,40 @@ const chainArray = [
5730
5730
  status: 'active'
5731
5731
  },
5732
5732
  {
5733
- name: 'Near Mainnet',
5733
+ name: 'NEAR Protocol',
5734
5734
  chain: 'NEAR',
5735
- rpc: [],
5735
+ rpc: [ 'https://eth-rpc.mainnet.near.org' ],
5736
5736
  icon: 'near',
5737
5737
  faucets: [],
5738
5738
  nativeCurrency: { name: 'NEAR', symbol: 'NEAR', decimals: 18 },
5739
- infoURL: 'https://near.org/',
5739
+ infoURL: 'https://near.org',
5740
5740
  shortName: 'near',
5741
5741
  chainId: 397,
5742
5742
  networkId: 397,
5743
5743
  explorers: [
5744
5744
  {
5745
- name: 'Near Blocks',
5746
- url: 'https://nearblocks.io',
5747
- standard: 'none'
5745
+ name: 'NEAR Explorer',
5746
+ url: 'https://eth-explorer.near.org',
5747
+ standard: 'EIP3091'
5748
5748
  }
5749
5749
  ]
5750
5750
  },
5751
5751
  {
5752
- name: 'Near Testnet',
5752
+ name: 'NEAR Protocol Testnet',
5753
5753
  chain: 'NEAR',
5754
- rpc: [],
5754
+ rpc: [ 'https://eth-rpc.testnet.near.org' ],
5755
5755
  icon: 'near',
5756
5756
  faucets: [],
5757
- nativeCurrency: { name: 'Testnet NEAR', symbol: 'NEAR', decimals: 18 },
5758
- infoURL: 'https://aurora.dev',
5757
+ nativeCurrency: { name: 'NEAR', symbol: 'NEAR', decimals: 18 },
5758
+ infoURL: 'https://near.org',
5759
5759
  shortName: 'near-testnet',
5760
5760
  chainId: 398,
5761
5761
  networkId: 398,
5762
5762
  explorers: [
5763
5763
  {
5764
- name: 'Near blocks',
5765
- url: 'https://testnet.nearblocks.io',
5766
- standard: 'none'
5764
+ name: 'NEAR Explorer',
5765
+ url: 'https://eth-explorer-testnet.near.org',
5766
+ standard: 'EIP3091'
5767
5767
  }
5768
5768
  ]
5769
5769
  },
@@ -9846,6 +9846,26 @@ const chainArray = [
9846
9846
  }
9847
9847
  ]
9848
9848
  },
9849
+ {
9850
+ name: 'ADF Chain Testnet',
9851
+ chain: 'ADF Chain Testnet',
9852
+ icon: 'addfilltest',
9853
+ rpc: [ 'https://testnet.adftechnology.com/' ],
9854
+ faucets: [],
9855
+ nativeCurrency: { name: 'ADDFILL Testnet', symbol: 'tADF', decimals: 18 },
9856
+ infoURL: 'https://www.adfstarworld.com/',
9857
+ shortName: 'tADF',
9858
+ chainId: 1212,
9859
+ networkId: 1212,
9860
+ explorers: [
9861
+ {
9862
+ name: 'ADF Testnet explorer',
9863
+ url: 'https://testnet-explorer.adftechnology.com',
9864
+ standard: 'EIP3091'
9865
+ }
9866
+ ],
9867
+ status: 'active'
9868
+ },
9849
9869
  {
9850
9870
  name: 'Popcateum Mainnet',
9851
9871
  chain: 'POPCATEUM',
@@ -9884,6 +9904,26 @@ const chainArray = [
9884
9904
  }
9885
9905
  ]
9886
9906
  },
9907
+ {
9908
+ name: 'ADF Chain',
9909
+ chain: 'ADF Chain',
9910
+ icon: 'addfillmain',
9911
+ rpc: [ 'https://mainnet.adftechnology.com/' ],
9912
+ faucets: [],
9913
+ nativeCurrency: { name: 'ADDFILL', symbol: 'ADF', decimals: 18 },
9914
+ infoURL: 'https://www.adfstarworld.com/',
9915
+ shortName: 'ADF',
9916
+ chainId: 1215,
9917
+ networkId: 1215,
9918
+ explorers: [
9919
+ {
9920
+ name: 'ADF explorer',
9921
+ url: 'https://explorer.adftechnology.com',
9922
+ standard: 'EIP3091'
9923
+ }
9924
+ ],
9925
+ status: 'active'
9926
+ },
9887
9927
  {
9888
9928
  name: 'Cycle Network Testnet',
9889
9929
  chain: 'ETH',
@@ -24111,6 +24151,44 @@ const chainArray = [
24111
24151
  }
24112
24152
  ]
24113
24153
  },
24154
+ {
24155
+ name: 'SEC Testnet',
24156
+ chain: 'SEC',
24157
+ icon: 'secIcon',
24158
+ rpc: [ 'https://testnet-rpc.secexplorer.io' ],
24159
+ faucets: [ 'https://faucet.secexplorer.io' ],
24160
+ nativeCurrency: { name: 'SEP', symbol: 'SEP', decimals: 18 },
24161
+ infoURL: 'https://smartenergychain.org',
24162
+ shortName: 'SEPt',
24163
+ chainId: 19515,
24164
+ networkId: 19515,
24165
+ explorers: [
24166
+ {
24167
+ name: 'SEC Testnet Explorer',
24168
+ url: 'https://testnet.secexplorer.io',
24169
+ standard: 'EIP3091'
24170
+ }
24171
+ ]
24172
+ },
24173
+ {
24174
+ name: 'SEC Mainnet',
24175
+ chain: 'SEC',
24176
+ icon: 'secIcon',
24177
+ rpc: [ 'https://rpc.secexplorer.io' ],
24178
+ faucets: [],
24179
+ nativeCurrency: { name: 'SEP', symbol: 'SEP', decimals: 18 },
24180
+ infoURL: 'https://smartenergychain.org',
24181
+ shortName: 'SECm',
24182
+ chainId: 19516,
24183
+ networkId: 19516,
24184
+ explorers: [
24185
+ {
24186
+ name: 'SEC Mainnet Explorer',
24187
+ url: 'https://secexplorer.io',
24188
+ standard: 'EIP3091'
24189
+ }
24190
+ ]
24191
+ },
24114
24192
  {
24115
24193
  name: 'Magnet Network',
24116
24194
  chain: 'Magnet',
@@ -29656,6 +29734,25 @@ const chainArray = [
29656
29734
  networkId: 90001,
29657
29735
  icon: 'fxcore'
29658
29736
  },
29737
+ {
29738
+ name: 'UBIT SMARTCHAIN MAINNET',
29739
+ chain: 'UBIT SMARTCHAIN',
29740
+ rpc: [ 'https://rpc.ubitscan.io' ],
29741
+ faucets: [],
29742
+ nativeCurrency: { name: 'USC', symbol: 'USC', decimals: 18 },
29743
+ infoURL: 'https://ubitscan.io',
29744
+ shortName: 'UBITSCAN',
29745
+ chainId: 90002,
29746
+ networkId: 90002,
29747
+ slip44: 108,
29748
+ explorers: [
29749
+ {
29750
+ name: 'UBITSCAN',
29751
+ url: 'https://ubitscan.io',
29752
+ standard: 'EIP3091'
29753
+ }
29754
+ ]
29755
+ },
29659
29756
  {
29660
29757
  name: 'Beverly Hills',
29661
29758
  title: 'Ethereum multi-client Verkle Testnet Beverly Hills',
@@ -37623,8 +37720,8 @@ const chainArray = [
37623
37720
  networkId: 1313161554,
37624
37721
  explorers: [
37625
37722
  {
37626
- name: 'aurorascan.dev',
37627
- url: 'https://aurorascan.dev',
37723
+ name: 'Aurora Explorer',
37724
+ url: 'https://explorer.aurora.dev',
37628
37725
  standard: 'EIP3091'
37629
37726
  }
37630
37727
  ]
@@ -37646,8 +37743,8 @@ const chainArray = [
37646
37743
  slip44: 1,
37647
37744
  explorers: [
37648
37745
  {
37649
- name: 'aurorascan.dev',
37650
- url: 'https://testnet.aurorascan.dev',
37746
+ name: 'Aurora Explorer',
37747
+ url: 'https://explorer.testnet.aurora.dev',
37651
37748
  standard: 'EIP3091'
37652
37749
  }
37653
37750
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.505",
3
+ "version": "0.0.507",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {