eth-chainlist 0.0.13 → 0.0.14

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.14 (2022-11-21)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.13 ([9aa6de8](https://github.com/poowf/eth-chainlist/commit/9aa6de847402f69f00b23864214e612dd0e90d49))
9
+ * update chain data ([7baa55c](https://github.com/poowf/eth-chainlist/commit/7baa55c2628940398f5282aa95b19489c442598c))
10
+
3
11
  ### 0.0.13 (2022-11-19)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -1918,6 +1918,30 @@ const chainArray = [
1918
1918
  }
1919
1919
  ]
1920
1920
  },
1921
+ {
1922
+ name: 'DeBank Testnet',
1923
+ chain: 'DeBank',
1924
+ rpc: [],
1925
+ faucets: [],
1926
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
1927
+ infoURL: '',
1928
+ shortName: 'debank-testnet',
1929
+ chainId: 115,
1930
+ networkId: 115,
1931
+ explorers: []
1932
+ },
1933
+ {
1934
+ name: 'DeBank Mainnet',
1935
+ chain: 'DeBank',
1936
+ rpc: [],
1937
+ faucets: [],
1938
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
1939
+ infoURL: '',
1940
+ shortName: 'debank-mainnet',
1941
+ chainId: 116,
1942
+ networkId: 116,
1943
+ explorers: []
1944
+ },
1921
1945
  {
1922
1946
  name: 'Fuse Mainnet',
1923
1947
  chain: 'FUSE',
@@ -7222,7 +7246,12 @@ const chainArray = [
7222
7246
  title: 'Proof Of Memes Mainnet',
7223
7247
  chain: 'POM',
7224
7248
  icon: 'pom',
7225
- rpc: [ 'https://mainnet-rpc.memescan.io' ],
7249
+ rpc: [
7250
+ 'https://mainnet-rpc.memescan.io',
7251
+ 'https://mainnet-rpc2.memescan.io',
7252
+ 'https://mainnet-rpc3.memescan.io',
7253
+ 'https://mainnet-rpc4.memescan.io'
7254
+ ],
7226
7255
  faucets: [],
7227
7256
  nativeCurrency: { name: 'Proof Of Memes', symbol: 'POM', decimals: 18 },
7228
7257
  infoURL: 'https://proofofmemes.org',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {