eth-chainlist 0.0.141 → 0.0.143

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,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.143 (2023-05-05)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.142 ([fdc9188](https://github.com/poowf/eth-chainlist/commit/fdc9188dc3f5bd0c1e012fc3616d363be4d71f23))
9
+ * update chain data ([abb0fb1](https://github.com/poowf/eth-chainlist/commit/abb0fb1348b4d2cf3d6f7022e47eae742e99840d))
10
+
11
+ ### 0.0.142 (2023-05-04)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.141 ([15c6e08](https://github.com/poowf/eth-chainlist/commit/15c6e08b3f2d5ca3a0ca19c905d4a6613bde6412))
17
+ * update chain data ([a018df3](https://github.com/poowf/eth-chainlist/commit/a018df3191a4a538b6e32c6f604219be31af7de7))
18
+
3
19
  ### 0.0.141 (2023-05-03)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -1991,6 +1991,26 @@ const chainArray = [
1991
1991
  networkId: 111,
1992
1992
  icon: 'etherlite'
1993
1993
  },
1994
+ {
1995
+ name: 'Coinbit Mainnet',
1996
+ chain: 'Coinbit',
1997
+ rpc: [ 'https://coinbit-rpc-mainnet.chain.sbcrypto.app' ],
1998
+ faucets: [],
1999
+ nativeCurrency: { name: 'Gas IDR', symbol: 'GIDR', decimals: 18 },
2000
+ infoURL: 'https://crypto.stockbit.com/',
2001
+ shortName: 'coinbit',
2002
+ chainId: 112,
2003
+ networkId: 112,
2004
+ icon: 'coinbit',
2005
+ explorers: [
2006
+ {
2007
+ name: 'blockscout',
2008
+ url: 'https://coinbit-explorer.chain.sbcrypto.app',
2009
+ icon: 'blockscout',
2010
+ standard: 'EIP3091'
2011
+ }
2012
+ ]
2013
+ },
1994
2014
  {
1995
2015
  name: 'Dehvo',
1996
2016
  chain: 'Dehvo',
@@ -2316,6 +2336,26 @@ const chainArray = [
2316
2336
  ],
2317
2337
  icon: 'alyx'
2318
2338
  },
2339
+ {
2340
+ name: 'Deamchain Mainnet',
2341
+ chain: 'Deamchain',
2342
+ icon: 'deam',
2343
+ rpc: [ 'https://mainnet.deamchain.com' ],
2344
+ faucets: [],
2345
+ nativeCurrency: { name: 'Deamchain Native Token', symbol: 'DEAM', decimals: 18 },
2346
+ infoURL: 'https://deamchain.com',
2347
+ shortName: 'deam',
2348
+ chainId: 136,
2349
+ networkId: 136,
2350
+ explorers: [
2351
+ {
2352
+ name: 'Deamchain Block Explorer',
2353
+ url: 'https://scan.deamchain.com',
2354
+ standard: 'EIP3091',
2355
+ icon: 'deam'
2356
+ }
2357
+ ]
2358
+ },
2319
2359
  {
2320
2360
  name: 'Polygon Mainnet',
2321
2361
  chain: 'Polygon',
@@ -2945,6 +2985,26 @@ const chainArray = [
2945
2985
  }
2946
2986
  ]
2947
2987
  },
2988
+ {
2989
+ name: 'Deamchain Testnet',
2990
+ chain: 'Deamchain',
2991
+ icon: 'deam',
2992
+ rpc: [ 'https://testnet.deamchain.com' ],
2993
+ faucets: [ 'https://faucet.deamchain.com' ],
2994
+ nativeCurrency: { name: 'Deamchain Native Token', symbol: 'DEAM', decimals: 18 },
2995
+ infoURL: 'https://deamchain.com',
2996
+ shortName: 'deamtest',
2997
+ chainId: 236,
2998
+ networkId: 236,
2999
+ explorers: [
3000
+ {
3001
+ name: 'Deamchain Testnet Explorer',
3002
+ url: 'https://testnet-scan.deamchain.com',
3003
+ standard: 'EIP3091',
3004
+ icon: 'deam'
3005
+ }
3006
+ ]
3007
+ },
2948
3008
  {
2949
3009
  name: 'Energy Web Chain',
2950
3010
  chain: 'Energy Web Chain',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.141",
3
+ "version": "0.0.143",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {