@vultisig/cli 2.5.0 → 2.7.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 +28 -0
  2. package/dist/index.js +4517 -564
  3. package/package.json +6 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @vultisig/cli
2
2
 
3
+ ## 2.7.0
4
+
5
+ ### Patch Changes
6
+
7
+ - [#849](https://github.com/vultisig/vultisig-sdk/pull/849) [`7f93069`](https://github.com/vultisig/vultisig-sdk/commit/7f93069d9003728919d43ef0acc1287a96870c59) Thanks [@neavra](https://github.com/neavra)! - Add a configurable request timeout to all agent-backend HTTP calls in the CLI. A stalled TCP connection (half-open socket, hung load balancer, dropped packets) previously left `vsig agent` invocations hanging forever in headless/CI runs. Every unary fetch (auth, health, conversations, delete, messages-since) and the initial connect of the SSE message stream are now bounded by `AbortSignal.timeout` (default 30s, overridable via `VULTISIG_HTTP_TIMEOUT_MS`). A timeout surfaces as a clear, catchable `request timed out after Nms` error; caller-supplied cancellation signals are preserved.
8
+
9
+ - [#852](https://github.com/vultisig/vultisig-sdk/pull/852) [`026a41b`](https://github.com/vultisig/vultisig-sdk/commit/026a41bf23c9d3344ef431ad4b126ebc755f95a9) Thanks [@neavra](https://github.com/neavra)! - Harden agent `sign_typed_data`: replace the hand-rolled EIP-712 encoder with viem's `hashTypedData` (matching the digest ethers `TypedDataEncoder.hash` produces), enforce low-S (EIP-2) canonicalization on the MPC signature, and add a recover-verify gate that confirms the assembled signature recovers to the vault's EVM address (throws an actionable, non-retryable `SIGNATURE_RECOVERY_MISMATCH` vault-context error otherwise — naming both addresses and pointing the caller at the loaded vault/keyshare rather than failing blank). Fixes wrong-domain-separator digests for domains that omit `verifyingContract` (Polymarket ClobAuth) or carry `salt`, and prevents malleable/unrecoverable signatures from being returned as success.
10
+
11
+ - [#851](https://github.com/vultisig/vultisig-sdk/pull/851) [`0126319`](https://github.com/vultisig/vultisig-sdk/commit/0126319ed686d978a0d0b70c43a00f9e82c2a8a7) Thanks [@neavra](https://github.com/neavra)! - Echo `pm_batch_ref` from the agent `sign_typed_data` path so Polymarket BATCH
12
+ approvals auto-submit. The multi-payload (batch) return now includes
13
+ `pm_batch_ref` alongside `pm_order_ref`, and the client-side tool dispatch echo
14
+ loop forwards the bare `pm_batch_ref` marker into the recent-action data.
15
+ Previously BATCH approvals signed but the backend never dispatched
16
+ `submit_deposit_wallet_batch` because the marker was dropped.
17
+ - Updated dependencies [[`dc43ea2`](https://github.com/vultisig/vultisig-sdk/commit/dc43ea2657915012032bf273c73ede44a183185b), [`d4ba485`](https://github.com/vultisig/vultisig-sdk/commit/d4ba4854a358235a243d8f8bb2aed0680bbdbaea), [`da59b7f`](https://github.com/vultisig/vultisig-sdk/commit/da59b7f8d7fdf48e26ab4a8617e5273d807b4e66), [`4e733c4`](https://github.com/vultisig/vultisig-sdk/commit/4e733c44708e7b81efd0a9b29298c6a9deba5f51), [`4541e6f`](https://github.com/vultisig/vultisig-sdk/commit/4541e6f9899a5c091b73830db1a2db7e739828de), [`b5ca32d`](https://github.com/vultisig/vultisig-sdk/commit/b5ca32d5e53b85f07531c9303e4c33e2dd44de5d), [`d1b19ed`](https://github.com/vultisig/vultisig-sdk/commit/d1b19ed39102b32f9eb5a51ef794226adb959022), [`7af5ab2`](https://github.com/vultisig/vultisig-sdk/commit/7af5ab236f3bdd0ba3b78198940044adcd157507), [`59e66c8`](https://github.com/vultisig/vultisig-sdk/commit/59e66c89858f90222a1d2d74eff9e71b69dd2f03), [`4f17411`](https://github.com/vultisig/vultisig-sdk/commit/4f17411ea8d739db706631cf873c85df4d329a0f), [`acfd6e4`](https://github.com/vultisig/vultisig-sdk/commit/acfd6e460e4ea27c7a7bcd668371ab1dea32c345), [`356e841`](https://github.com/vultisig/vultisig-sdk/commit/356e841c35cf38c2671309ae12720666f32745df), [`a22ef41`](https://github.com/vultisig/vultisig-sdk/commit/a22ef4106763fd25992c7f93f72c214dfdcc55d4), [`c778b4c`](https://github.com/vultisig/vultisig-sdk/commit/c778b4cc91a42f4a4488a51ea72a775ad4e78a54), [`f0a5529`](https://github.com/vultisig/vultisig-sdk/commit/f0a5529a8d3cfcce5a2883b5da83e6d15ac270ec), [`3bbe0fb`](https://github.com/vultisig/vultisig-sdk/commit/3bbe0fb011ec2f5502f321255f0304f06ea3e079), [`dac32f6`](https://github.com/vultisig/vultisig-sdk/commit/dac32f61fc5140b4c612801fc45ba48670dffe19), [`ed75992`](https://github.com/vultisig/vultisig-sdk/commit/ed759929cd8612a6873f892d33da2857f18ad9f8), [`f4ba189`](https://github.com/vultisig/vultisig-sdk/commit/f4ba18958d351be48ed83c502895be251bacc47a), [`8ed4b59`](https://github.com/vultisig/vultisig-sdk/commit/8ed4b59680e1285cc374fefba8cf1bd98347ef5e), [`5be6408`](https://github.com/vultisig/vultisig-sdk/commit/5be6408aa51e8c20568ff18c4cf604977c3004ec), [`da4b301`](https://github.com/vultisig/vultisig-sdk/commit/da4b30119916a2a13d0e4e4f4472e4f28ed810c3), [`7d79b2d`](https://github.com/vultisig/vultisig-sdk/commit/7d79b2d1307873937957b9c8caf1886f01d70190), [`31eae40`](https://github.com/vultisig/vultisig-sdk/commit/31eae40e82516e192f11c80516b0da784aafe67b), [`60edbf4`](https://github.com/vultisig/vultisig-sdk/commit/60edbf43c4f8ab9928781adbd4e5d0f0fba6074c), [`0e2e2ab`](https://github.com/vultisig/vultisig-sdk/commit/0e2e2abb3bf312df92131fb997dbaa0802f19c79), [`b9a8cc1`](https://github.com/vultisig/vultisig-sdk/commit/b9a8cc19738333bb42f5d20c6bf849692fec4801), [`f47f060`](https://github.com/vultisig/vultisig-sdk/commit/f47f0606223a0a1905ebb7745d311384488d4178)]:
18
+ - @vultisig/sdk@2.7.0
19
+ - @vultisig/client-shared@0.2.16
20
+ - @vultisig/core-chain@2.17.8
21
+ - @vultisig/rujira@40.0.0
22
+
23
+ ## 2.6.0
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies [[`fbc5581`](https://github.com/vultisig/vultisig-sdk/commit/fbc558151bc60c5240f6b6721dfd66a0ddec23c9), [`ae45d06`](https://github.com/vultisig/vultisig-sdk/commit/ae45d068bc64f5b6d11b6c8a43c0cd5b21e0bb4e), [`a6ff6a4`](https://github.com/vultisig/vultisig-sdk/commit/a6ff6a49c2c0672af5c7afc06a7a97ac35e1cb10), [`3043e1b`](https://github.com/vultisig/vultisig-sdk/commit/3043e1be5a869a83fb0946860b9e2d532eedf02f)]:
28
+ - @vultisig/sdk@2.6.0
29
+ - @vultisig/rujira@39.0.0
30
+
3
31
  ## 2.5.0
4
32
 
5
33
  ### Minor Changes