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