Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@getalby/cli",
"description": "CLI for Nostr Wallet Connect (NIP-47) with a few additional useful lightning tools",
"repository": "https://github.com/getAlby/cli.git",
"version": "0.6.0",
"version": "0.6.1",
"type": "module",
"main": "build/index.js",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/fetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function registerFetch402Command(program: Command) {
"Fetch a payment-protected resource (auto-detects L402, X402, MPP)",
)
.argument("<url>", "URL to fetch")
.option("-m, --method <method>", "HTTP method (GET, POST, etc.)")
.option("-X, --method <method>", "HTTP method (GET, POST, etc.)")
.option("-b, --body <json>", "Request body (JSON string)")
.option("-H, --headers <json>", "Additional headers (JSON string)")
.option(
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ program
" $ npx @getalby/cli get-balance\n" +
" $ npx @getalby/cli pay-invoice --invoice lnbc...",
)
.version("0.6.0")
.version("0.6.1")
.option(
"-w, --wallet-name <name>",
"Use a named wallet's connection secret (~/.alby-cli/connection-secret-<name>.key)",
Expand Down
Loading