@exodus/ethereum-lib 4.0.4 → 4.0.5-alpha.1

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