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-COMMANDO-RUNE(7) LIGHTNING-COMMANDO-RUNE(7)

lightning-commando-rune -- Command to Authorize Remote Peer Access

commando-rune [rune] [restrictions]

Command deprecated in v23.08, removed after v25.02.

The commando-rune RPC command creates a base64 string called a rune which can be used to access commands on this node. Each rune contains a unique id (a number starting at 0), and can have restrictions inside it. Nobody can remove restrictions from a rune: if you try, the rune will be rejected. There is no limit on how many runes you can issue; the node simply decodes and checks them as they are received (we do store them for lightning-commando- listrunes(7) however).

  • rune (string, optional): If supplied, the restrictions are simple appended to that rune (it doesn't need to be a rune belonging to this node). If not supplied, a new rune is constructed, with a new unique id.

  • restrictions (one of, optional): It can be the string readonly, or an array of restrictions. Each restriction is an array of one or more alternatives, such as "method is listpeers", or "method is listpeers OR time is before 2023".:
  • (array of arrays): Alternatives use a simple language to examine the command which is being run:

  • time: the current UNIX time, e.g. "time<1656759180".

  • id: the node_id of the peer, e.g. "id=024b9a1fa8e006f1e3937f65f66c408e6da8e1ca728ea43222a7381df1cc449605".

  • method: the command being run, e.g. "method=withdraw".

  • per: how often the rune can be used, with suffix "sec" (default), "min", "hour", "day" or "msec", "usec" or "nsec". e.g. "per=5sec".

  • rate: the rate limit, per minute, e.g. "rate=60" is equivalent to "per=1sec".

  • pnum: the number of parameters. e.g. "pnum<2".

  • pnameX: the parameter named X (with any punctuation like _ removed). e.g. "pnamedestination=1RustyRX2oai4EYYDpQGWvEL62BBGqN9T".

  • parrN: the N'th parameter. e.g. "parr0=1RustyRX2oai4EYYDpQGWvEL62BBGqN9T".

  • (array of strings)
(string, optional)

(always "readonly"): A rune which allows most get and list commands, and the summary command.

Restrictions are one or more alternatives. Each alternative is name operator value. The valid names are shown above.

Note that if a value contains \, it must be preceeded by another \ to form valid JSON: * =: passes if equal ie. identical. e.g. method=withdraw * /: not equals, e.g. method/withdraw * ^: starts with, e.g. id^024b9a1fa8e006f1e3937f * $: ends with, e.g. id$381df1cc449605. * ~: contains, e.g. id~006f1e3937f65f66c40. * <: is a decimal integer, and is less than. e.g. time<1656759180 * >: is a decimal integer, and is greater than. e.g. time>1656759180 * {: preceeds in alphabetical order (or matches but is shorter), e.g. id{02ff. * }: follows in alphabetical order (or matches but is longer), e.g. id}02ff. * #: a comment, ignored, e.g. dumb example#. * !: only passes if the name does not exist. e.g. pnamedestination!. Every other operator except # fails if name does not exist!

Because anyone can add a restriction to a rune, you can always turn a normal rune into a read-only rune, or restrict access for 30 minutes from the time you give it to someone. Adding restrictions before sharing runes is best practice.

If a rune has a ratelimit, any derived rune will have the same id, and thus will compete for that ratelimit. You might want to consider adding a tighter ratelimit to a rune before sharing it, so you will keep the remainder. For example, if you rune has a limit of 60 times per minute, adding a limit of 5 times per minute and handing that rune out means you can still use your original rune 55 times per minute.

On success, an object is returned, containing:

  • rune (string): The resulting rune.

  • unique_id (string): The id of this rune: this is set at creation and cannot be changed (even as restrictions are added).

The following warnings may also be returned:

warning_unrestricted_rune: A warning shown when runes are created with powers that could drain your node.

Rusty Russell <rusty@rustcorp.com.au> wrote the original Python commando.py plugin, the in-tree commando plugin, and this manual page.

Christian Decker came up with the name "commando", which almost excuses his previous adoption of the name "Eltoo".

lightning-commando(7), lightning-decode(7)

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

You can use lightning-decode(7) to examine runes you have been given:

$ lightning-cli decode tU-RLjMiDpY2U0o3W1oFowar36RFGpWloPbW9-RuZdo9MyZpZD0wMjRiOWExZmE4ZTAwNmYxZTM5MzdmNjVmNjZjNDA4ZTZkYThlMWNhNzI4ZWE0MzIyMmE3MzgxZGYxY2M0NDk2MDUmbWV0aG9kPWxpc3RwZWVycyZwbnVtPTEmcG5hbWVpZF4wMjRiOWExZmE4ZTAwNmYxZTM5M3xwYXJyMF4wMjRiOWExZmE4ZTAwNmYxZTM5MyZ0aW1lPDE2NTY5MjA1MzgmcmF0ZT0y
{

"type": "rune",
"unique_id": "3",
"string": "b54f912e33220e9636534a375b5a05a306abdfa4451a95a5a0f6d6f7e46e65da:=3&id=024b9a1fa8e006f1e3937f65f66c408e6da8e1ca728ea43222a7381df1cc449605&method=listpeers&pnum=1&pnameid^024b9a1fa8e006f1e393|parr0^024b9a1fa8e006f1e393&time<1656920538&rate=2",
"restrictions": [
{
"alternatives": [
"id=024b9a1fa8e006f1e3937f65f66c408e6da8e1ca728ea43222a7381df1cc449605"
],
"summary": "id (of commanding peer) equal to '024b9a1fa8e006f1e3937f65f66c408e6da8e1ca728ea43222a7381df1cc449605'"
},
{
"alternatives": [
"method=listpeers"
],
"summary": "method (of command) equal to 'listpeers'"
},
{
"alternatives": [
"pnum=1"
],
"summary": "pnum (number of command parameters) equal to 1"
},
{
"alternatives": [
"pnameid^024b9a1fa8e006f1e393",
"parr0^024b9a1fa8e006f1e393"
],
"summary": "pnameid (object parameter 'id') starts with '024b9a1fa8e006f1e393' OR parr0 (array parameter #0) starts with '024b9a1fa8e006f1e393'"
},
{
"alternatives": [
"time<1656920538"
],
"summary": "time (in seconds since 1970) less than 1656920538 (approximately 19 hours 18 minutes from now)"
},
{
"alternatives": [
"rate=2"
],
"summary": "rate (max per minute) equal to 2"
}
],
"valid": true }
You can use lightning-checkrune(7) to verify whether a rune is valid for a specific method and its parameters:

$ lightning-cli checkrune -k 'rune'=tU-RLjMiDpY2U0o3W1oFowar36RFGpWloPbW9-RuZdo9MyZpZD0wMjRiOWExZmE4ZTAwNmYxZTM5MzdmNjVmNjZjNDA4ZTZkYThlMWNhNzI4ZWE0MzIyMmE3MzgxZGYxY2M0NDk2MDUmbWV0aG9kPWxpc3RwZWVycyZwbnVtPTEmcG5hbWVpZF4wMjRiOWExZmE4ZTAwNmYxZTM5M3xwYXJyMF4wMjRiOWExZmE4ZTAwNmYxZTM5MyZ0aW1lPDE2NTY5MjA1MzgmcmF0ZT0y 'method'='invoice' 'params'='{"amount_msat": 100000001, "label": "invoicelabel"', "description": "Checking rune validity"}'

Example 1: This creates a fresh rune which can do anything:

Request:

$ lightning-cli commando-rune

{

"id": "example:commando-rune#1",
"method": "commando-rune",
"params": {} }

Response:

{

"rune": "OSqc7ixY6F-gjcigBfxtzKUI54uzgFSA6YfBQoWGDV89MA==",
"unique_id": "0",
"warning_unrestricted_rune": "WARNING: This rune has no restrictions! Anyone who has access to this rune could drain funds from your node. Be careful when giving this to apps that you don't trust. Consider using the restrictions parameter to only allow access to specific rpc methods." }

Example 2: We can add restrictions to that rune, like so:

The readonly restriction is a short-cut for two restrictions:

1: ['method^list', 'method^get', 'method=summary']: You may call list, get or summary.

2: ['method/listdatastore']: But not listdatastore: that contains sensitive stuff!

Request:

$ lightning-cli commando-rune -k "rune"="OSqc7ixY6F-gjcigBfxtzKUI54uzgFSA6YfBQoWGDV89MA==" "restrictions"="readonly"

{

"id": "example:commando-rune#2",
"method": "commando-rune",
"params": {
"rune": "OSqc7ixY6F-gjcigBfxtzKUI54uzgFSA6YfBQoWGDV89MA==",
"restrictions": "readonly"
} }

Response:

{

"rune": "oVkzoiQ67VCU1h_aRjPqCeWktGX54ARDsqqQgDL-uMs9MCZtZXRob2RebGlzdHxtZXRob2ReZ2V0fG1ldGhvZD1zdW1tYXJ5Jm1ldGhvZC9saXN0ZGF0YXN0b3Jl",
"unique_id": "0" }

Example 3: We can do the same manually (readonly), like so:

Request:

$ lightning-cli commando-rune -k "rune"="OSqc7ixY6F-gjcigBfxtzKUI54uzgFSA6YfBQoWGDV89MA==" "restrictions"='[["method^list", "method^get", "method=summary"], ["method/listdatastore"]]'

{

"id": "example:commando-rune#3",
"method": "commando-rune",
"params": {
"rune": "OSqc7ixY6F-gjcigBfxtzKUI54uzgFSA6YfBQoWGDV89MA==",
"restrictions": [
[
"method^list",
"method^get",
"method=summary"
],
[
"method/listdatastore"
]
]
} }

Response:

{

"rune": "oVkzoiQ67VCU1h_aRjPqCeWktGX54ARDsqqQgDL-uMs9MCZtZXRob2RebGlzdHxtZXRob2ReZ2V0fG1ldGhvZD1zdW1tYXJ5Jm1ldGhvZC9saXN0ZGF0YXN0b3Jl",
"unique_id": "0" }

Example 4: This will allow the rune to be used for id starting with 0266e4598d1d3c415f57, and for the method listpeers:

Request:

$ lightning-cli commando-rune -k "restrictions"='[["id^0266e4598d1d3c415f57"], ["method=listpeers"]]'

{

"id": "example:commando-rune#4",
"method": "commando-rune",
"params": {
"restrictions": [
[
"id^0266e4598d1d3c415f57"
],
[
"method=listpeers"
]
]
} }

Response:

{

"rune": "AzR2J3ym3qYCQpnTCuA7EXd90jhK9qzfRVTiMXhOpzk9MSZpZF4wMjY2ZTQ1OThkMWQzYzQxNWY1NyZtZXRob2Q9bGlzdHBlZXJz",
"unique_id": "1" }

Example 5: This will allow the rune to be used for the method pay, and for the parameter amount_msat to be less than 10000:

Request:

$ lightning-cli commando-rune -k "restrictions"='[["method=pay"], ["pnameamountmsat<10000"]]'

{

"id": "example:commando-rune#5",
"method": "commando-rune",
"params": {
"restrictions": [
[
"method=pay"
],
[
"pnameamountmsat<10000"
]
]
} }

Response:

{

"rune": "4Ab5jUyjTVuYBxGTz3KtnR7kT__KDIjYBCvza5e4EVU9MiZtZXRob2Q9cGF5JnBuYW1lYW1vdW50bXNhdDwxMDAwMA==",
"unique_id": "2" }

Example 6: Let's create a rune which lets a specific peer run listpeers on themselves:

Request:

$ lightning-cli commando-rune -k "restrictions"='[["id=0266e4598d1d3c415f572a8488830b60f7e744ed9235eb0b1ba93283b315c03518"], ["method=listpeers"], ["pnum=1"], ["pnameid=0266e4598d1d3c415f572a8488830b60f7e744ed9235eb0b1ba93283b315c03518", "parr0=0266e4598d1d3c415f572a8488830b60f7e744ed9235eb0b1ba93283b315c03518"]]'

{

"id": "example:commando-rune#6",
"method": "commando-rune",
"params": {
"restrictions": [
[
"id=0266e4598d1d3c415f572a8488830b60f7e744ed9235eb0b1ba93283b315c03518"
],
[
"method=listpeers"
],
[
"pnum=1"
],
[
"pnameid=0266e4598d1d3c415f572a8488830b60f7e744ed9235eb0b1ba93283b315c03518",
"parr0=0266e4598d1d3c415f572a8488830b60f7e744ed9235eb0b1ba93283b315c03518"
]
]
} }

Response:

{

"rune": "M8_ecN6cRSI0k14vMKNkkSbI6HIzrS49txY_WFe30y09MyZpZD0wMjY2ZTQ1OThkMWQzYzQxNWY1NzJhODQ4ODgzMGI2MGY3ZTc0NGVkOTIzNWViMGIxYmE5MzI4M2IzMTVjMDM1MTgmbWV0aG9kPWxpc3RwZWVycyZwbnVtPTEmcG5hbWVpZD0wMjY2ZTQ1OThkMWQzYzQxNWY1NzJhODQ4ODgzMGI2MGY3ZTc0NGVkOTIzNWViMGIxYmE5MzI4M2IzMTVjMDM1MTh8cGFycjA9MDI2NmU0NTk4ZDFkM2M0MTVmNTcyYTg0ODg4MzBiNjBmN2U3NDRlZDkyMzVlYjBiMWJhOTMyODNiMzE1YzAzNTE4",
"unique_id": "3" }

Example 7: This allows listpeers with 1 argument (pnum=1), which is either by name (pnameid), or position (parr0). We could shorten this in several ways: either allowing only positional or named parameters, or by testing the start of the parameters only. Here's an example which only checks the first 10 bytes of the listpeers parameter:

Request:

$ lightning-cli commando-rune -k "restrictions"='[["id=0266e4598d1d3c415f572a8488830b60f7e744ed9235eb0b1ba93283b315c03518"], ["method=listpeers"], ["pnum=1"], ["pnameid^0266e4598d1d3c415f57", "parr0^0266e4598d1d3c415f57"]]'

{

"id": "example:commando-rune#7",
"method": "commando-rune",
"params": {
"restrictions": [
[
"id=0266e4598d1d3c415f572a8488830b60f7e744ed9235eb0b1ba93283b315c03518"
],
[
"method=listpeers"
],
[
"pnum=1"
],
[
"pnameid^0266e4598d1d3c415f57",
"parr0^0266e4598d1d3c415f57"
]
]
} }

Response:

{

"rune": "lCryeRwU6TfdsWTzmtv72TBUBAjgyWPwZ0r4GQm8vUs9NCZpZD0wMjY2ZTQ1OThkMWQzYzQxNWY1NzJhODQ4ODgzMGI2MGY3ZTc0NGVkOTIzNWViMGIxYmE5MzI4M2IzMTVjMDM1MTgmbWV0aG9kPWxpc3RwZWVycyZwbnVtPTEmcG5hbWVpZF4wMjY2ZTQ1OThkMWQzYzQxNWY1N3xwYXJyMF4wMjY2ZTQ1OThkMWQzYzQxNWY1Nw==",
"unique_id": "4" }

Example 8: Before we give this to our peer, let's add two more restrictions: that it only be usable for 24 hours from now (time<), and that it can only be used twice a minute (rate=2). date +%s can give us the current time in seconds:

Request:

$ lightning-cli commando-rune "lCryeRwU6TfdsWTzmtv72TBUBAjgyWPwZ0r4GQm8vUs9NCZpZD0wMjY2ZTQ1OThkMWQzYzQxNWY1NzJhODQ4ODgzMGI2MGY3ZTc0NGVkOTIzNWViMGIxYmE5MzI4M2IzMTVjMDM1MTgmbWV0aG9kPWxpc3RwZWVycyZwbnVtPTEmcG5hbWVpZF4wMjY2ZTQ1OThkMWQzYzQxNWY1N3xwYXJyMF4wMjY2ZTQ1OThkMWQzYzQxNWY1Nw==" "[['time<"$(($(date +%s) + 24*60*60))"', 'rate=2']]"

{

"id": "example:commando-rune#8",
"method": "commando-rune",
"params": [
"lCryeRwU6TfdsWTzmtv72TBUBAjgyWPwZ0r4GQm8vUs9NCZpZD0wMjY2ZTQ1OThkMWQzYzQxNWY1NzJhODQ4ODgzMGI2MGY3ZTc0NGVkOTIzNWViMGIxYmE5MzI4M2IzMTVjMDM1MTgmbWV0aG9kPWxpc3RwZWVycyZwbnVtPTEmcG5hbWVpZF4wMjY2ZTQ1OThkMWQzYzQxNWY1N3xwYXJyMF4wMjY2ZTQ1OThkMWQzYzQxNWY1Nw==",
[
[
"time<\"$(($(date +%s) + 24*60*60))\"",
"rate=2"
]
]
] }

Response:

{

"rune": "7nvN7uG2CyTOXe3dYQL38YVdGsnD6d5VNNyeHVl6inc9NCZpZD0wMjY2ZTQ1OThkMWQzYzQxNWY1NzJhODQ4ODgzMGI2MGY3ZTc0NGVkOTIzNWViMGIxYmE5MzI4M2IzMTVjMDM1MTgmbWV0aG9kPWxpc3RwZWVycyZwbnVtPTEmcG5hbWVpZF4wMjY2ZTQ1OThkMWQzYzQxNWY1N3xwYXJyMF4wMjY2ZTQ1OThkMWQzYzQxNWY1NyZ0aW1lPCIkKCgkKGRhdGUgKyVzKSArIDI0KjYwKjYwKSkifHJhdGU9Mg==",
"unique_id": "4" }

Example 9: Now, let us create a rune with read-only restrictions, extended to only allow sending payments of less than 100,000 sats per day using either the pay or xpay method. Ideally, the condition would look something like:

[["method^list or method^get or ((method=pay or method=xpay) and per=1day and pnameamount\_msat<100000001)"],["method/listdatastore"]].

However, since brackets and AND conditions within OR are currently not supported for rune creation, we can restructure the conditions as follows:

  • methodlist|methodget|method=summary|method=pay|method=xpay

  • method/listdatastore

  • method/pay|per=1day

  • method/pay|pnameamount_msat<100000001

  • method/xpay|per=1day

  • method/xpay|pnameamount_msat<100000001

Request:

$ lightning-cli commando-rune -k "restrictions"='[["method^list", "method^get", "method=summary", "method=pay", "method=xpay"], ["method/listdatastore"], ["method/pay", "per=1day"], ["method/pay", "pnameamount_msat<100000001"], ["method/xpay", "per=1day"], ["method/xpay", "pnameamount_msat<100000001"]]'

{

"id": "example:commando-rune#9",
"method": "commando-rune",
"params": {
"restrictions": [
[
"method^list",
"method^get",
"method=summary",
"method=pay",
"method=xpay"
],
[
"method/listdatastore"
],
[
"method/pay",
"per=1day"
],
[
"method/pay",
"pnameamount_msat<100000001"
],
[
"method/xpay",
"per=1day"
],
[
"method/xpay",
"pnameamount_msat<100000001"
]
]
} }

Response:

{

"rune": "QqgK4ZNJOwMjhUAQhHcnkTBXRoLghhPcJVR_Zew97ug9NSZtZXRob2RebGlzdHxtZXRob2ReZ2V0fG1ldGhvZD1zdW1tYXJ5fG1ldGhvZD1wYXl8bWV0aG9kPXhwYXkmbWV0aG9kL2xpc3RkYXRhc3RvcmUmbWV0aG9kL3BheXxwZXI9MWRheSZtZXRob2QvcGF5fHBuYW1lYW1vdW50X21zYXQ8MTAwMDAwMDAxJm1ldGhvZC94cGF5fHBlcj0xZGF5Jm1ldGhvZC94cGF5fHBuYW1lYW1vdW50X21zYXQ8MTAwMDAwMDAx",
"unique_id": "5" }
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.