@1sat/cli 0.0.102 → 0.0.103
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/README.md +8 -2
- package/dist/cli.js +5157 -0
- package/package.json +18 -13
- package/src/beef.ts +1 -1
- package/src/cli.ts +0 -2
- package/src/commands/action.ts +4 -4
- package/src/commands/authfetch.ts +5 -5
- package/src/commands/config.ts +4 -4
- package/src/commands/identity.ts +6 -6
- package/src/commands/init.ts +4 -4
- package/src/commands/locks.ts +7 -7
- package/src/commands/mcp-proxy.ts +2 -6
- package/src/commands/messagebox.ts +6 -6
- package/src/commands/opns.ts +7 -7
- package/src/commands/ordinals.ts +7 -7
- package/src/commands/remote.ts +6 -6
- package/src/commands/serve.ts +21 -48
- package/src/commands/social.ts +6 -6
- package/src/commands/storage.ts +11 -12
- package/src/commands/sweep.ts +6 -6
- package/src/commands/tokens.ts +6 -6
- package/src/commands/tx.ts +3 -3
- package/src/commands/wallet.ts +9 -7
- package/src/config.ts +9 -29
- package/src/context.ts +2 -2
- package/src/help.ts +2 -2
- package/src/keys.ts +1 -1
- package/src/main.ts +27 -22
- package/src/monitor-lock.ts +1 -4
- package/src/monitor-once.ts +3 -3
- package/src/repricer/buildPriceUpdateTask.ts +2 -2
- package/src/repricer/computeReprice.ts +1 -1
- package/src/repricer/index.ts +8 -8
- package/src/repricer/providers.ts +2 -2
- package/src/repricer/whatsOnChain.ts +1 -1
- package/scripts/check-bun.cjs +0 -17
- package/scripts/resubmit-bsv21-discovery.ts +0 -33
package/README.md
CHANGED
|
@@ -4,7 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
Command-line interface for 1Sat Ordinals on BSV.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Runs on Node ≥ 22.13 or [Bun](https://bun.sh) ≥ 1.2. With Node:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm i -g @1sat/cli # or: npx @1sat/cli <command>
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
With Bun (the published bin has a `node` shebang; pass `--bun` to force Bun when both are installed):
|
|
8
14
|
|
|
9
15
|
```
|
|
10
16
|
curl -fsSL https://bun.sh/install | bash
|
|
@@ -19,7 +25,7 @@ bun add -g @1sat/cli
|
|
|
19
25
|
Or run without installing:
|
|
20
26
|
|
|
21
27
|
```
|
|
22
|
-
bunx @1sat/cli
|
|
28
|
+
bunx --bun @1sat/cli
|
|
23
29
|
```
|
|
24
30
|
|
|
25
31
|
---
|