GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
LIGHTNING-HELP(7) LIGHTNING-HELP(7)

lightning-help -- Command to return all information about RPC commands.

help [command]

The help is a RPC command which is possible consult all information about the RPC commands, or a specific command if command is given.

Note that the $ lightning-cli(1) tool will prefer to list a man page when a specific command is specified, and will only return the JSON if the man page is not found.

command (string, optional): Command to get information about.

On success, an object is returned, containing:

help (array of objects):
command (string): The command.

format-hint (string, optional) (always "simple"): Prints the help in human-readable flat form.

On failure, one of the following error codes may be returned:

-32602: Error in given parameters.

Vincenzo Palazzo <vincenzo.palazzo@protonmail.com> wrote the initial version of this man page, but many others did the hard work of actually implementing this rpc command.

Main web site: https://github.com/ElementsProject/lightning

Example 1:

Request:

$ lightning-cli help -k "command"="pay"

{

"id": "example:help#1",
"method": "help",
"params": {
"command": "pay"
} }

Response:

{

"help": [
{
"command": "pay bolt11 [amount_msat] [label] [riskfactor] [maxfeepercent] [retry_for] [maxdelay] [exemptfee] [localinvreqid] [exclude] [maxfee] [description] [partial_msat] [dev_use_shadow]"
}
],
"format-hint": "simple" }

Example 2:

Request:

$ lightning-cli help -k "command"="dev"

{

"id": "example:help#2",
"method": "help",
"params": {
"command": "dev"
} }

Response:

{

"help": [
{
"command": "dev subcommand=crash|rhash|slowcmd"
}
],
"format-hint": "simple" }
Core Lightning v25.02.2

Search for    or go to Top of page |  Section 7 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.