@drift-labs/vaults-sdk 0.1.118 → 0.1.119

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.
@@ -537,7 +537,9 @@ class VaultClient {
537
537
  },
538
538
  remainingAccounts,
539
539
  });
540
- return await this.createAndSendTxn([withdrawIx]);
540
+ return await this.createAndSendTxn([withdrawIx], {
541
+ units: 650000,
542
+ });
541
543
  }
542
544
  }
543
545
  async forceWithdraw(vaultDepositor) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drift-labs/vaults-sdk",
3
- "version": "0.1.118",
3
+ "version": "0.1.119",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "directories": {
@@ -843,7 +843,9 @@ export class VaultClient {
843
843
  remainingAccounts,
844
844
  });
845
845
 
846
- return await this.createAndSendTxn([withdrawIx]);
846
+ return await this.createAndSendTxn([withdrawIx], {
847
+ units: 650_000,
848
+ });
847
849
  }
848
850
  }
849
851