@vultisig/cli 0.5.0 → 0.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 (4) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +39 -0
  3. package/dist/index.js +2934 -258
  4. package/package.json +18 -17
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # @vultisig/cli
2
2
 
3
+ ## 0.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#113](https://github.com/vultisig/vultisig-sdk/pull/113) [`da68dda`](https://github.com/vultisig/vultisig-sdk/commit/da68dda0622a024af35666bb7b7088dea4cf3cfd) Thanks [@bornslippynuxx](https://github.com/bornslippynuxx)! - Add `agent` command for AI agent chat sessions with NDJSON pipe mode (`--via-agent`) for programmatic interaction
8
+
9
+ - [#113](https://github.com/vultisig/vultisig-sdk/pull/113) [`da68dda`](https://github.com/vultisig/vultisig-sdk/commit/da68dda0622a024af35666bb7b7088dea4cf3cfd) Thanks [@bornslippynuxx](https://github.com/bornslippynuxx)! - Add `--two-step` flag for fast vault creation with persistent pending vault state and cross-session verification
10
+
11
+ ### Patch Changes
12
+
13
+ - [#113](https://github.com/vultisig/vultisig-sdk/pull/113) [`da68dda`](https://github.com/vultisig/vultisig-sdk/commit/da68dda0622a024af35666bb7b7088dea4cf3cfd) Thanks [@bornslippynuxx](https://github.com/bornslippynuxx)! - Add User-Agent header to all CLI HTTP requests
14
+
15
+ - Updated dependencies [[`da68dda`](https://github.com/vultisig/vultisig-sdk/commit/da68dda0622a024af35666bb7b7088dea4cf3cfd)]:
16
+ - @vultisig/sdk@0.7.0
17
+ - @vultisig/rujira@3.0.0
18
+
19
+ ## 0.6.0
20
+
21
+ ### Minor Changes
22
+
23
+ - [#100](https://github.com/vultisig/vultisig-sdk/pull/100) [`2dfc9f6`](https://github.com/vultisig/vultisig-sdk/commit/2dfc9f62f6f53d2b709e9adfc57b17273b5ea109) Thanks [@bornslippynuxx](https://github.com/bornslippynuxx)! - Add `tx-status` command to check transaction confirmation status
24
+
25
+ Polls every 5 seconds until the transaction reaches a final state (success/error). Use `--no-wait` to return the current status immediately. Supports all output modes (table, JSON, silent) and the interactive shell.
26
+
27
+ ### Patch Changes
28
+
29
+ - Updated dependencies [[`355c700`](https://github.com/vultisig/vultisig-sdk/commit/355c700e7caca812199fafceb3767b8b3c5fd236), [`78f8bd2`](https://github.com/vultisig/vultisig-sdk/commit/78f8bd237dc3ca6f42dd268d069ed8f7902e733b), [`117cd70`](https://github.com/vultisig/vultisig-sdk/commit/117cd705271305269acce5436a2845decd98dc90), [`26d3cae`](https://github.com/vultisig/vultisig-sdk/commit/26d3cae3066a316d1e9429a2664a6b4ea18dd8a2), [`2ed545f`](https://github.com/vultisig/vultisig-sdk/commit/2ed545fb20f5920cb70d096076d55756cea222aa), [`a2d545b`](https://github.com/vultisig/vultisig-sdk/commit/a2d545b96794cce087eb4ea8ce955db20212c926), [`f5176ba`](https://github.com/vultisig/vultisig-sdk/commit/f5176ba4a9fda2c82b6264a958d61d5170e3d2cd)]:
30
+ - @vultisig/sdk@0.6.0
31
+ - @vultisig/rujira@2.0.0
32
+
3
33
  ## 0.5.0
4
34
 
5
35
  ### Minor Changes
package/README.md CHANGED
@@ -353,6 +353,45 @@ Swap quotes and previews show your VULT discount tier when affiliate fees are ap
353
353
  |---------|-------------|
354
354
  | `sign` | Sign pre-hashed bytes for custom transactions |
355
355
  | `broadcast` | Broadcast a pre-signed raw transaction |
356
+ | `tx-status <chain> <txHash>` | Check transaction confirmation status |
357
+
358
+ #### Transaction Status
359
+
360
+ Check whether a transaction has confirmed on-chain. By default, polls every 5 seconds until the transaction reaches a final state (success or error):
361
+
362
+ ```bash
363
+ # Poll until confirmed (default)
364
+ vultisig tx-status ethereum 0x9f8e7d6c...
365
+
366
+ # Check current status without polling
367
+ vultisig tx-status ethereum 0x9f8e7d6c... --no-wait
368
+
369
+ # JSON output
370
+ vultisig tx-status ethereum 0x9f8e7d6c... -o json
371
+ ```
372
+
373
+ **Output:**
374
+ ```
375
+ ✓ Transaction status: success
376
+ Status: success
377
+ Fee: 0.00042 ETH
378
+ Explorer: https://etherscan.io/tx/0x9f8e7d6c...
379
+ ```
380
+
381
+ **JSON output:**
382
+ ```json
383
+ {
384
+ "chain": "ethereum",
385
+ "txHash": "0x9f8e7d6c...",
386
+ "status": "success",
387
+ "receipt": {
388
+ "feeAmount": "420000000000000",
389
+ "feeDecimals": 18,
390
+ "feeTicker": "ETH"
391
+ },
392
+ "explorerUrl": "https://etherscan.io/tx/0x9f8e7d6c..."
393
+ }
394
+ ```
356
395
 
357
396
  #### Signing Arbitrary Bytes
358
397