@exodus/ethereum-lib 4.0.5-alpha.0 → 4.0.5

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/LICENSE.md ADDED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-lib",
3
- "version": "4.0.5-alpha.0",
3
+ "version": "4.0.5",
4
4
  "description": "Ethereum Library",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -42,5 +42,6 @@
42
42
  "lodash": "^4.17.15",
43
43
  "ms": "^2.1.1",
44
44
  "reselect": "~3.0.1"
45
- }
45
+ },
46
+ "gitHead": "ae3d9c8735bfd46d0e0efd39f4077202f2abb710"
46
47
  }
@@ -1,4 +1,5 @@
1
1
  const ethStakeAccountState = ({ currency }) => ({
2
+ enabled: true,
2
3
  isDelegating: false,
3
4
  isUndelegateInProgress: false,
4
5
  canClaimUndelegatedBalance: false,
@@ -10,6 +11,7 @@ const ethStakeAccountState = ({ currency }) => ({
10
11
 
11
12
  const assetStakingData = {
12
13
  polygon: ({ currency }) => ({
14
+ enabled: true,
13
15
  isDelegating: false,
14
16
  // Unstaking takes ~3-4 days, after that, user needs to
15
17
  // claim the unstaked amount (initial staked amount)
package/src/constants.js CHANGED
@@ -21,9 +21,8 @@ const CHAIN_DATA = {
21
21
  },
22
22
  bsc: {
23
23
  chainId: 56,
24
- serverUrl: 'https://bsc-clarity.a.exodus.io/',
24
+ serverUrl: 'https://bsc.a.exodus.io/wallet/v1/',
25
25
  confirmationsNumber: 15,
26
- monitorType: 'clarity',
27
26
  tokenType: 'BSC_BEP20',
28
27
  },
29
28
  matic: {