@shieldedtech/moth-cli 0.13.0 → 0.13.1-canary.20260909171538-3195f0e

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/CHANGELOG.md +279 -0
  2. package/package.json +4 -4
package/CHANGELOG.md ADDED
@@ -0,0 +1,279 @@
1
+ # @shieldedtech/moth-cli
2
+
3
+ ## 0.13.1-canary.20260909171538-3195f0e
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [77edf22]
8
+ - Updated dependencies [aa3c276]
9
+ - @shieldedtech/moth-wallet@0.13.1-canary.20260909171538-3195f0e
10
+ - @shieldedtech/moth-tui@0.13.1-canary.20260909171538-3195f0e
11
+
12
+ ## 0.13.0
13
+
14
+ ### Minor Changes
15
+
16
+ - b49c96d: Give the CLI and TUI the pre-seed, timings and DUST-registration behaviour the
17
+ extension already had.
18
+
19
+ **Birthdays.** `chainTip` moves from the extension's background handlers into
20
+ core, and `wallet generate` on both surfaces records the chain tip as the new
21
+ wallet's birthday. Without one the `reference.height <= birthday` guard can never
22
+ pass, so no CLI or TUI wallet could ever be pre-seeded — the difference between
23
+ 29.3s and 78.6 min on preprod. Imports still get none, deliberately: a restored
24
+ wallet may hold funds at any height, and seeding it past its own history would
25
+ lose them silently.
26
+
27
+ **`moth preseed status|refresh|build`.** Thin wrappers over core functions
28
+ that already existed but had no caller outside the extension. `refresh` is the
29
+ one worth having — 9.1s to catch a reference up, against 53.6 min to rebuild it
30
+ from genesis, which is what someone does by hand when the command is missing.
31
+ `build` says how long it will take before starting, because an unattended command
32
+ that appears to hang for an hour is indistinguishable from a broken one.
33
+
34
+ **Phase timings on disk.** `createFileTimingStore` backs the existing
35
+ storage-agnostic recorder with `~/.moth/timings.json` — the path
36
+ `docs/BENCHMARKING.md` already documented and nothing wrote. `moth diagnostics
37
+ timings` shows the timeline as deltas, and recording stays off until switched on.
38
+ A headless sync is where this matters most: it is the surface with no other
39
+ signal about where the time went.
40
+
41
+ **DUST registration in the TUI.** `DustRegistrationNotYetError` is now caught
42
+ distinctly, so a wallet whose NIGHT is too new to cover the registration fee is
43
+ told "not yet" instead of shown the raw SDK error as a failure. The panel and the
44
+ CLI already did this; the TUI was the surface still reporting it as a defect.
45
+ - 426b757: Detect and steer users away from the devnet dust-ledger wedge (docs/bugs-found #15-style defect).
46
+
47
+ Some devnets (midnight-node 2.0.0-rc.4 / midnight-ledger 9.1.0.0-rc.3) can
48
+ enter a state where a DUST registration leaves the node's dust ledger unable
49
+ to reconcile with any wallet's, permanently — every subsequent dust spend,
50
+ from every wallet, fails with the same `InvalidDustSpendProof` /
51
+ `Custom error: 170` signature that a normal transient race also produces.
52
+ Only a chain reset clears it; retrying does not. This is not a Moth defect —
53
+ see `docs/upstream-issues/dust-ledger-wedge-invalid-dust-spend-proof.md` for
54
+ the evidence and the draft issue against `midnightntwrk/midnight-node` /
55
+ `midnight-ledger` — but Moth users hit it on shared and local devnets, so
56
+ Moth now detects and steers around it rather than retrying forever.
57
+
58
+ **Detection** (`@shieldedtech/moth-wallet`, `sync/dust-ledger-health.ts`): a
59
+ run of consecutive, independently built submissions rejected with the same
60
+ ambiguous signature — with the chain confirmed still producing new blocks
61
+ meanwhile — is
62
+ surfaced as `DustLedgerWedgedError` instead of a generic failure. Wired into
63
+ every fee-paying submission path: the extension's offscreen host, `moth
64
+ transfer` / `moth dust register`, and the daemon's `transferTokens` /
65
+ `dustRegister` / `dustDeregister` RPCs (used by both the headless CLI daemon
66
+ and the TUI).
67
+
68
+ **Registration UX** (`@shieldedtech/moth-extension`): the "Register for
69
+ DUST" flow now warns before registering a NIGHT coin that has sat
70
+ unregistered for more than a minute — the only pattern with zero known
71
+ failures across four documented occurrences is registering within seconds of
72
+ funding — and a wallet that has never registered is nudged to do so as soon
73
+ as new NIGHT is observed, rather than waiting for the user to find the Dust
74
+ screen on their own.
75
+
76
+ **Repro harness**: `packages/cli/tests/integration/daemon/dust-wedge-repro.test.ts`
77
+ isolates the fund-to-register delay as the one variable prior occurrences
78
+ didn't control for, holding UTXO size fixed at the size every known success
79
+ used (10,000,000 NIGHT).
80
+
81
+ No change to transaction construction, signing, or proving — every
82
+ registration involved in the underlying defect was accepted by the ledger,
83
+ so this only classifies what a rejection means after the fact.
84
+ - b49c96d: Move a pre-seed reference between machines: `moth preseed export` / `import`.
85
+
86
+ Building a reference IS the chain walk — tens of minutes, once per network per
87
+ machine. That cost is identical for everyone, because a reference holds public
88
+ chain state and nothing else, so it is work that should be done once and shared
89
+ rather than repeated by every developer who clones the repo. ADR 0005 called for
90
+ these two actions; the rest of the command shipped without them.
91
+
92
+ The on-disk shape is the one `scripts/export-preseed.mjs` already writes and CI
93
+ already publishes: gzipped state per sub-wallet plus a manifest. One format, so a
94
+ reference exported here can be dropped into the extension package, and one
95
+ downloaded from a release can be imported here.
96
+
97
+ `export` never writes the reference wallet's mnemonic. That is the only secret in
98
+ the arrangement — the state blobs are public chain data, but the mnemonic
99
+ controls the wallet they were built from, and a published reference is meant to
100
+ be safe to hand to strangers. The command says so in its own output.
101
+
102
+ `import` refuses rather than guesses. A bundle for another network would seed
103
+ wallets from a chain they have never been on, and the mismatch is silent
104
+ afterwards. A bundle older than what is already present is a downgrade that costs
105
+ catch-up time on every wallet created from then on; `--force` allows it, for
106
+ replacing a corrupt newer reference with a known-good older one.
107
+
108
+ Every part is decompressed before any part is written. Unpacking as it went left
109
+ the store holding new shielded and unshielded state beside an old dust state when
110
+ a later part turned out to be corrupt — a mixture that never existed on chain,
111
+ with a height key that still looked consistent. The height is written last, since
112
+ it is what marks a reference usable.
113
+
114
+ ### Patch Changes
115
+
116
+ - Updated dependencies [a17b719]
117
+ - Updated dependencies [b49c96d]
118
+ - Updated dependencies [f736ebd]
119
+ - Updated dependencies [b49c96d]
120
+ - Updated dependencies [0508a38]
121
+ - Updated dependencies [2dabc50]
122
+ - Updated dependencies [426b757]
123
+ - Updated dependencies [eb4d56a]
124
+ - Updated dependencies [3e131e2]
125
+ - Updated dependencies [9afd580]
126
+ - Updated dependencies [b49c96d]
127
+ - Updated dependencies [e31eaf8]
128
+ - Updated dependencies [c2f8b73]
129
+ - Updated dependencies [b49c96d]
130
+ - Updated dependencies [b49c96d]
131
+ - Updated dependencies [b49c96d]
132
+ - Updated dependencies [c1c462e]
133
+ - Updated dependencies [9be5669]
134
+ - Updated dependencies [43eb678]
135
+ - Updated dependencies [ea1793d]
136
+ - Updated dependencies [316ca82]
137
+ - Updated dependencies [89f34aa]
138
+ - Updated dependencies [04f1aa4]
139
+ - @shieldedtech/moth-wallet@0.13.0
140
+ - @shieldedtech/moth-tui@0.13.0
141
+
142
+ ## 0.12.1
143
+
144
+ ### Patch Changes
145
+
146
+ - Updated dependencies [bd8d41f]
147
+ - @shieldedtech/moth-tui@0.12.1
148
+ - @shieldedtech/moth-wallet@0.12.1
149
+
150
+ ## 0.12.0
151
+
152
+ ### Minor Changes
153
+
154
+ - ea15676: Coordinate the first public package release under the Moth package names.
155
+
156
+ This is a minor bump because no package has previously been published under the
157
+ new names. The release remains experimental and unsupported, so it stays below
158
+ 1.0.0. Package names, CLI identifiers, environment variables, connector identity,
159
+ and local state paths are aligned before publication; no compatibility shim is
160
+ required for an unpublished package.
161
+
162
+ ### Patch Changes
163
+
164
+ - Updated dependencies [be98f55]
165
+ - Updated dependencies [ea15676]
166
+ - @shieldedtech/moth-wallet@0.12.0
167
+ - @shieldedtech/moth-tui@0.12.0
168
+
169
+ ## 0.2.0
170
+
171
+ ### Minor Changes
172
+
173
+ - 36cb067: Add selectable proof-server and local WASM proving across the core wallet, CLI,
174
+ terminal dashboard, browser extension, and dApp connector API.
175
+ - fc93b31: Add the opt-in daemon for sharing one live wallet between a long-running host
176
+ (the TUI dashboard or `moth daemon serve`) and CLI clients over an authenticated
177
+ Unix-socket or TCP RPC. The daemon owns the sync engine and spending keys;
178
+ clients route the build/balance/prove/sign/submit pipeline through it, so keys
179
+ never leave the host process. Adds the `moth daemon serve|transfer|call|deploy|
180
+ submit-tx|dust register|dust deregister|key gen|key list|key revoke|maintenance`
181
+ subcommands, API-key authentication with read/write scopes, an append-only audit
182
+ log, and an L3 confirmation queue (interactive modal, or headless auto-approve
183
+ gated behind an explicit flag + env var).
184
+
185
+ ### Patch Changes
186
+
187
+ - b157dd2: Add the browser extension wallet and dApp connector workflow.
188
+
189
+ The wallet core now supports browser-safe persisted sync state, activity history,
190
+ message signing, staged transfer construction and submission, fee estimation,
191
+ and DUST and intent operations. Add the WXT side-panel extension and Connector
192
+ Lab mock dApp, expose the new APIs through the browser adapter, and keep the CLI
193
+ and TUI integrations compatible with asynchronous sync cache handling and the
194
+ Ink runtime.
195
+
196
+ - 771338d: Tell the user when registration needs time, instead of failing and blaming the
197
+ proof server.
198
+
199
+ Registering NIGHT for DUST generation is self-funding: a `DustRegistration`
200
+ carries `allow_fee_payment`, and the ledger lets the transaction pay its own fee
201
+ from the DUST its NIGHT _would have_ generated had it been registered all along.
202
+ That is what stops the obvious deadlock — DUST pays fees, and registering is how
203
+ you get DUST.
204
+
205
+ Self-funding is not free. `generationless_fee_availability` caps the backdated
206
+ amount at `elapsed × night_value × generation_decay_rate`, which starts at zero.
207
+ So a freshly funded wallet cannot cover the fee yet, and the wait is _inversely
208
+ proportional to the balance_: at the ledger's defaults a 0.3 DUST fee needs ~36s
209
+ at 1,000 NIGHT, ~6 min at 100, ~1 hour at 10, and ~10 hours at 1.
210
+
211
+ Reported from preprod as a red failure card reading "That didn't go through",
212
+ with the raw SDK message and a footnote suggesting the proof server. Two of those
213
+ three were wrong: nothing went wrong, and proving never happened — the SDK refuses
214
+ before building.
215
+
216
+ `estimateRegistrationAffordability` (core, pure, WASM-free) turns the SDK's
217
+ per-UTxO figures into an answer: affordable now, affordable in N seconds, or never
218
+ at this holding. That last case matters — when the ceiling is below the fee,
219
+ "wait" is the wrong advice and "hold more NIGHT" is the right one.
220
+
221
+ `designateForDust` throws `DustRegistrationNotYetError` carrying that estimate.
222
+ Because the guard sits in core, it reaches every run mode at once — extension,
223
+ CLI, TUI and daemon RPC all route through the same function.
224
+
225
+ Two decisions worth recording. The estimate is computed only on the failure path,
226
+ so a registration that was always going to succeed pays nothing for it. And
227
+ whether to raise the typed error is decided by the affordability numbers, not by
228
+ matching the SDK's message text — string-matching would need re-matching on every
229
+ SDK release, and would fail silently when it drifted.
230
+
231
+ The panel now shows "Not quite yet", says nothing was spent, and gives a localized
232
+ wait ("Ready in about 8 hours"). `mayBeProvingFailure` suppresses the proof-server
233
+ footnote for every outcome decided before proving.
234
+
235
+ `moth dust register` gains a pre-flight and `--wait` (with `--wait-timeout`). The
236
+ pre-flight matters more on the CLI than in the panel: without it the only way to
237
+ learn the wait is to fail, and re-running means paying for a full sync first.
238
+ `--wait` polls rather than sleeping the predicted duration blind, since the
239
+ estimate moves if the wallet's NIGHT changes underneath it.
240
+
241
+ Also corrects the documentation. Four files stated that the ledger imposes a 3h
242
+ grace period before DUST appears. `dust_grace_period` is 3 hours, but it bounds how
243
+ stale a transaction's declared `ctime` may be — it is not a delay before
244
+ generation starts, which is linear from the UTxO's creation with a time-to-cap of
245
+ about a week. The observation behind the claim was real; the mechanism was
246
+ invented to fit it. The guides are corrected in place; ADR 0003 is annotated
247
+ rather than rewritten, since it is a dated record of what was decided.
248
+
249
+ - Updated dependencies [fc93b31]
250
+ - Updated dependencies [fc93b31]
251
+ - Updated dependencies [12881a3]
252
+ - Updated dependencies [b157dd2]
253
+ - Updated dependencies [c7d1ef7]
254
+ - Updated dependencies [36cb067]
255
+ - Updated dependencies [003720d]
256
+ - Updated dependencies [fc93b31]
257
+ - Updated dependencies [6f914fc]
258
+ - Updated dependencies [fc93b31]
259
+ - Updated dependencies [fc93b31]
260
+ - Updated dependencies [771338d]
261
+ - Updated dependencies [fc93b31]
262
+ - Updated dependencies [ba86b72]
263
+ - Updated dependencies [fc93b31]
264
+ - Updated dependencies [b7e2f00]
265
+ - Updated dependencies [1c597ff]
266
+ - Updated dependencies [24cb16c]
267
+ - Updated dependencies [0f9369f]
268
+ - Updated dependencies [bf49ced]
269
+ - Updated dependencies [0f197e2]
270
+ - Updated dependencies [1f69f66]
271
+ - Updated dependencies [fc93b31]
272
+ - Updated dependencies [6766583]
273
+ - Updated dependencies [fc93b31]
274
+ - Updated dependencies [2fde86f]
275
+ - Updated dependencies [e431662]
276
+ - Updated dependencies [717639a]
277
+ - Updated dependencies [e8b98da]
278
+ - @shieldedtech/moth-wallet@0.2.0
279
+ - @shieldedtech/moth-tui@0.2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shieldedtech/moth-cli",
3
- "version": "0.13.0",
3
+ "version": "0.13.1-canary.20260909171538-3195f0e",
4
4
  "description": "CLI tool for Midnight Network wallet operations and contract deployments. USE AT YOUR OWN RISK. Experimental software provided AS-IS with no warranty. Not audited. For development and testing purposes only.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -32,8 +32,8 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "@oclif/core": "^4.2.0",
35
- "@shieldedtech/moth-tui": "^0.13.0",
36
- "@shieldedtech/moth-wallet": "^0.13.0",
35
+ "@shieldedtech/moth-tui": "0.13.1-canary.20260909171538-3195f0e",
36
+ "@shieldedtech/moth-wallet": "0.13.1-canary.20260909171538-3195f0e",
37
37
  "dotenv": "17.4.2",
38
38
  "ink": "^7.0.1"
39
39
  },
@@ -55,4 +55,4 @@
55
55
  }
56
56
  }
57
57
  }
58
- }
58
+ }