@vultisig/cli 0.15.4 → 0.17.0

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 (3) hide show
  1. package/CHANGELOG.md +55 -0
  2. package/dist/index.js +2678 -683
  3. package/package.json +9 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,60 @@
1
1
  # @vultisig/cli
2
2
 
3
+ ## 0.17.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#280](https://github.com/vultisig/vultisig-sdk/pull/280) [`5aef564`](https://github.com/vultisig/vultisig-sdk/commit/5aef564309aeeede5da250e03447e0a3da0a12ab) Thanks [@rcoderdev](https://github.com/rcoderdev)! - Add THORChain LP agent actions (`thorchain_pool_info`, `thorchain_add_liquidity`, `thorchain_remove_liquidity`) to the CLI executor and document them in AGENTS.md. Fix `@vultisig/lib-utils` ESM imports to directory entrypoints so Node resolves `dist` correctly.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`219cb00`](https://github.com/vultisig/vultisig-sdk/commit/219cb00898deeaac418945a89c1d243f25aae152)]:
12
+ - @vultisig/sdk@0.17.0
13
+ - @vultisig/core-chain@1.3.1
14
+ - @vultisig/client-shared@0.2.1
15
+ - @vultisig/rujira@12.0.0
16
+
17
+ ## 0.16.0
18
+
19
+ ### Minor Changes
20
+
21
+ - [#204](https://github.com/vultisig/vultisig-sdk/pull/204) [`0388700`](https://github.com/vultisig/vultisig-sdk/commit/03887009b7579fc0b193d068d4a205cdd3b7c214) Thanks [@premiumjibles](https://github.com/premiumjibles)! - feat(cli): agent-friendly CLI + new @vultisig/mcp package
22
+
23
+ ## @vultisig/cli
24
+ - Auto-TTY JSON output (`--output`, `--ci`, `--quiet`, `--fields`, `--non-interactive`)
25
+ - Versioned `{ success, v: 1, data }` envelope and typed error envelope with exit codes 0-7
26
+ - Safety: fixed `swap`/`send`/`execute`/`rujira swap`/`rujira withdraw` auto-executing in JSON mode; `--yes` now required uniformly
27
+ - `--dry-run` coverage across all mutating commands
28
+ - `vsig schema` machine-readable command introspection
29
+ - Auth: replaced `keytar` with `@napi-rs/keyring`, encrypted-file fallback for headless environments (AES-256-GCM + async scrypt)
30
+
31
+ ## @vultisig/client-shared (new package)
32
+
33
+ Shared client infrastructure for `@vultisig/cli` and `@vultisig/mcp`: auth setup, config store, credential store (keyring + file fallback), tool descriptions, vault discovery.
34
+
35
+ ## @vultisig/sdk
36
+ - `VaultBase.send()` and `VaultBase.swap()` accept `amount: 'max'`
37
+ - `SwapService` rejects quotes with near-zero output to guard against bad provider routes
38
+ - `FiatValueService.fetchTokenPrice` returns `0` for non-EVM chains instead of throwing (effective behavior identical — `getPortfolioValue` already caught the throw)
39
+ - `ServerManager`: removed stdout `console.log` calls that corrupted JSON output; raised `waitForPeers` timeout from 30s to 120s and tightened poll interval from 2s to 500ms
40
+
41
+ ## @vultisig/core-chain
42
+ - Narrowed EVM broadcast retry list to strings that genuinely indicate "same tx already in mempool under this hash" (`already known`, `transaction already exists`, `tx already in mempool`). Dropped strings that can silently swallow real broadcast failures (`nonce too low`, `transaction is temporarily banned`, `future transaction tries to replace pending`, `could not replace existing tx`)
43
+
44
+ ## @vultisig/core-mpc
45
+ - `maxInboundWaitTime` raised from 1 to 3 minutes for flaky networks
46
+ - Added 100ms sleep in `processInbound` recursion to prevent hot-looping on empty inbound
47
+ - Setup message polling: same 10-second budget, polls 5× more often (50 × 200ms vs 10 × 1000ms)
48
+
49
+ - [#290](https://github.com/vultisig/vultisig-sdk/pull/290) [`83fe4c3`](https://github.com/vultisig/vultisig-sdk/commit/83fe4c3c58637aea4823d0eaa7f21d4c5cdf3dc7) Thanks [@rcoderdev](https://github.com/rcoderdev)! - Add `@vultisig/sdk/vite` helper plugin so Vite consumers exclude wasm glue packages from `optimizeDeps`, and harden dist ESM relative import rewriting with tests.
50
+
51
+ ### Patch Changes
52
+
53
+ - Updated dependencies [[`0388700`](https://github.com/vultisig/vultisig-sdk/commit/03887009b7579fc0b193d068d4a205cdd3b7c214), [`83fe4c3`](https://github.com/vultisig/vultisig-sdk/commit/83fe4c3c58637aea4823d0eaa7f21d4c5cdf3dc7)]:
54
+ - @vultisig/client-shared@0.2.0
55
+ - @vultisig/sdk@0.16.0
56
+ - @vultisig/rujira@11.0.0
57
+
3
58
  ## 0.15.4
4
59
 
5
60
  ### Patch Changes