bloby-bot 0.28.0 → 0.28.1
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
CHANGED
|
@@ -325,13 +325,16 @@ curl -s -X POST https://api.bloby.bot/api/services/test-mpp/use \
|
|
|
325
325
|
# → "PINEAPPLE-MPP-OK · paid via {free|balance|mpp} · 2026-…"
|
|
326
326
|
```
|
|
327
327
|
|
|
328
|
-
For services that may fall back to MPP, use the `mppx` CLI to auto-handle the 402 → sign → retry loop
|
|
328
|
+
For services that may fall back to MPP, use the `mppx` CLI to auto-handle the 402 → sign → retry loop. **The mppx CLI uses its own OS-keychain by default and does NOT know about your wallet** — pass your private key inline via `MPPX_PRIVATE_KEY` (which mppx checks before the keychain):
|
|
329
329
|
|
|
330
330
|
```bash
|
|
331
|
-
|
|
331
|
+
MPPX_PRIVATE_KEY=$(jq -r .wallet.privateKey ~/.bloby/config.json) \
|
|
332
|
+
npx -y mppx http://api.bloby.bot/api/services/test-mpp/use \
|
|
332
333
|
-X POST -H "X-Bloby-Token: $RELAY_TOKEN"
|
|
333
334
|
```
|
|
334
335
|
|
|
336
|
+
If you see `ACCOUNT_NOT_FOUND - No account found.`, you forgot to set `MPPX_PRIVATE_KEY` — the CLI looked in its empty keychain. Re-run with the env var.
|
|
337
|
+
|
|
335
338
|
**Wallet on disk:** `~/.bloby/config.json` field `wallet` — `address` is public, `privateKey` is secret. Never print the private key in chat. The address is fine to share.
|
|
336
339
|
|
|
337
340
|
**Running low?** Tell your human you need funds. Don't mention USDC, Tempo, or crypto unless they ask — to them, it's just adding dollars to your wallet via the "Add Funds" button in the chat header.
|