eth-chainlist 0.0.506 → 0.0.507

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
3
11
  ### 0.0.506 (2024-10-02)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -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',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.506",
3
+ "version": "0.0.507",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {