@drift-labs/vaults-sdk 0.5.26 → 0.5.28

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/cli/cli.ts +1 -1
  2. package/package.json +2 -2
package/cli/cli.ts CHANGED
@@ -47,7 +47,7 @@ program
47
47
  .option("-p, --permissioned", "Provide this flag to make the vault permissioned, vault-depositors will need to be initialized by the manager", false)
48
48
  .option("-a, --min-deposit-amount <number", "The minimum token amount allowed to deposit", "0")
49
49
  .option("-d, --delegate <publicKey>", "The address to make the delegate of the vault")
50
- .addOption(new Option("--manager <publickey>", "The manager for the vault").makeOptionMandatory(true))
50
+ .addOption(new Option("--manager <publickey>", "The manager for the vault"))
51
51
  .addOption(new Option("--dump-transaction-message", "Dump the transaction message to the console").makeOptionMandatory(false))
52
52
  .action((opts) => initVault(program, opts));
53
53
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drift-labs/vaults-sdk",
3
- "version": "0.5.26",
3
+ "version": "0.5.28",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "directories": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "dependencies": {
10
10
  "@coral-xyz/anchor": "0.29.0",
11
- "@drift-labs/sdk": "2.115.0-beta.4",
11
+ "@drift-labs/sdk": "2.115.0-beta.5",
12
12
  "@metaplex-foundation/js": "0.20.1",
13
13
  "@solana/web3.js": "1.92.3",
14
14
  "commander": "11.1.0",