@1sat/cli 0.0.49 → 0.0.51
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.
- package/package.json +4 -4
- package/src/commands/serve.ts +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@1sat/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.51",
|
|
4
4
|
"description": "CLI for 1Sat Ordinals SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/cli.ts",
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
],
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@1sat/actions": "0.0.
|
|
28
|
+
"@1sat/actions": "0.0.115",
|
|
29
29
|
"@1sat/client": "0.0.26",
|
|
30
30
|
"@1sat/types": "0.0.18",
|
|
31
|
-
"@1sat/wallet-node": "0.0.
|
|
32
|
-
"@1sat/wallet-server": "0.0.
|
|
31
|
+
"@1sat/wallet-node": "0.0.42",
|
|
32
|
+
"@1sat/wallet-server": "0.0.12",
|
|
33
33
|
"@bsv/sdk": "^2.0.13",
|
|
34
34
|
"@bsv/wallet-toolbox": "npm:@bopen-io/wallet-toolbox@2.1.21-parity-fix.2",
|
|
35
35
|
"chalk": "^5.0.0",
|
package/src/commands/serve.ts
CHANGED
|
@@ -226,9 +226,10 @@ async function runWithStorage(
|
|
|
226
226
|
storage,
|
|
227
227
|
activeRemote: resolved.activeRemote,
|
|
228
228
|
backups: resolved.backups,
|
|
229
|
-
//
|
|
230
|
-
//
|
|
231
|
-
|
|
229
|
+
// Every serve mode manages monitor work explicitly: wallet mode
|
|
230
|
+
// does none, monitor/all modes run startTasks. The factory's
|
|
231
|
+
// initial runOnce is redundant in all three cases.
|
|
232
|
+
skipInitialMonitor: true,
|
|
232
233
|
})
|
|
233
234
|
|
|
234
235
|
const accounts =
|