@exodus/solana-api 2.5.25 → 2.5.26

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/tx-send.js +5 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-api",
3
- "version": "2.5.25",
3
+ "version": "2.5.26",
4
4
  "description": "Exodus internal Solana asset API wrapper",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -23,8 +23,8 @@
23
23
  "@exodus/models": "^10.1.0",
24
24
  "@exodus/nfts-core": "^0.5.0",
25
25
  "@exodus/simple-retry": "^0.0.6",
26
- "@exodus/solana-lib": "^1.7.3",
27
- "@exodus/solana-meta": "^1.0.3",
26
+ "@exodus/solana-lib": "^1.7.4",
27
+ "@exodus/solana-meta": "^1.0.5",
28
28
  "bn.js": "^4.11.0",
29
29
  "debug": "^4.1.1",
30
30
  "lodash": "^4.17.11",
@@ -34,5 +34,5 @@
34
34
  "devDependencies": {
35
35
  "@exodus/assets-testing": "file:../../../__testing__"
36
36
  },
37
- "gitHead": "ed1cf2465307952f91fac5fbfef36eaa59a3acaf"
37
+ "gitHead": "88be13b711bcb6ca1be86993d67e69d4ec5ac263"
38
38
  }
package/src/tx-send.js CHANGED
@@ -196,7 +196,11 @@ export const createAndBroadcastTXFactory = (api) => async (
196
196
  Object.assign(changes, { mem: stakingData })
197
197
  }
198
198
 
199
- await assetClientInterface.updateAccountState({ assetName, walletAccount, newData: changes })
199
+ await assetClientInterface.updateAccountState({
200
+ assetName: baseAsset.name,
201
+ walletAccount,
202
+ newData: changes,
203
+ })
200
204
 
201
205
  return { txId }
202
206
  }