@exodus/solana-plugin 1.0.1 → 1.0.3

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/index.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-plugin",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Exodus internal Solana asset plugin",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -22,13 +22,13 @@
22
22
  "dependencies": {
23
23
  "@exodus/assets": "^9.0.1",
24
24
  "@exodus/bip44-constants": "^195.0.0",
25
- "@exodus/solana-api": "^2.5.23",
26
- "@exodus/solana-lib": "^1.6.7",
25
+ "@exodus/solana-api": "^2.5.24",
26
+ "@exodus/solana-lib": "^1.7.2",
27
27
  "@exodus/solana-meta": "^1.0.4",
28
28
  "minimalistic-assert": "^1.0.1"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@exodus/assets-testing": "file:../../../__testing__"
32
32
  },
33
- "gitHead": "9e502c63fb13a0d98349cb953f10b24467fff617"
33
+ "gitHead": "be5bbc66bc09ba9ba8dda28b3f2ca87893f1d12b"
34
34
  }
package/src/index.js CHANGED
@@ -33,7 +33,7 @@ const createAsset = ({
33
33
 
34
34
  const accountReserve = base.currency.SOL(0.01)
35
35
  const lowBalance = base.currency.SOL(0.01)
36
- const MIN_STAKING_BALANCE = base.currency.SOL(0.01)
36
+ const MIN_STAKING_AMOUNT = base.currency.SOL(0.01)
37
37
 
38
38
  const address = {
39
39
  validate: isValidAddress,
@@ -117,7 +117,7 @@ const createAsset = ({
117
117
  bip44,
118
118
  accountReserve,
119
119
  lowBalance,
120
- MIN_STAKING_BALANCE,
120
+ MIN_STAKING_AMOUNT,
121
121
  }
122
122
 
123
123
  return overrideCallback({ asset: fullAsset })