Files
palladum-lightning/doc/schemas/lightning-getroutes.json
Rusty Russell 461eb2eddb askrene: remove all small channels if there's no MPP support.
This is an inefficient hack.  Can you tell I really didn't want to
implement this?  MPP was finalized in 2018 FFS.

We do this by adding another "auto" layer, which removes all too-small
channels, and then makes our MPP node pile all the funds into the largest
channel it chooses.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2025-02-14 22:17:21 +10:30

225 lines
7.6 KiB
JSON

{
"$schema": "../rpc-schema-draft.json",
"type": "object",
"rpc": "getroutes",
"title": "Command for routing a payment",
"added": "v24.08",
"description": [
"The **getroutes** RPC command attempts to find the best set of paths for the payment from *source* to *destination* of *amount_msat*, using the given *layers* on top of the gossip information. The result is constrained by *maxfee*, and will arrive at the destination with *final_cltv*.",
"",
"NOTE: The returned paths are a different format then *getroute*, being more appropriate for creating intermediary onion layers.",
"",
"Layers are generally maintained by plugins, either to contain persistent information about capacities which have been discovered, or to contain transient information for this particular payment (such as blinded paths or routehints).",
"",
"There are three automatic layers: *auto.localchans* contains information on local channels from this node (including non-public ones), and their exact current spendable capacities. *auto.sourcefree* overrides all channels (including those from previous layers) leading out of the *source* to be zero fee and zero delay. These are both useful in the case where the source is the current node. And *auto.no_mpp_support* forces getroutes to return a single flow, though only basic checks are done that the result is useful."
],
"categories": [
"readonly"
],
"request": {
"required": [
"source",
"destination",
"amount_msat",
"layers",
"maxfee_msat",
"final_cltv"
],
"additionalProperties": false,
"properties": {
"source": {
"type": "pubkey",
"description": [
"Node pubkey to start the paths"
]
},
"destination": {
"type": "pubkey",
"description": [
"Node pubkey to end the paths"
]
},
"amount_msat": {
"type": "msat",
"description": [
"Amount to send. It can be a whole number, or a whole number ending in *msat* or *sat*, or a number with three decimal places ending in *sat*, or a number with 1 to 11 decimal places ending in *btc*."
]
},
"layers": {
"type": "array",
"items": {
"type": "string",
"description": [
"Layer to apply to the gossip map before attempting to find routes."
]
}
},
"maxfee_msat": {
"type": "msat",
"description": [
"Maximum fee to spend: we will never return a set of routes more expensive than this. It can be a whole number, or a whole number ending in *msat* or *sat*, or a number with three decimal places ending in *sat*, or a number with 1 to 11 decimal places ending in *btc*."
]
},
"final_cltv": {
"type": "u32",
"description": [
"Number of blocks for the final node. We need to know this because no HTLC is allowed to have a CLTV delay more than 2016 blocks."
]
},
"maxdelay": {
"type": "u32",
"added": "v25.02",
"description": [
"Maximum number of blocks of delay for the route. Cannot be bigger than 2016."
],
"default": "2016"
}
}
},
"response": {
"required": [
"probability_ppm",
"routes"
],
"additionalProperties": false,
"properties": {
"probability_ppm": {
"type": "u64",
"description": [
"The estimated probability of success using these routes, in millionths."
]
},
"routes": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"probability_ppm",
"amount_msat",
"final_cltv",
"path"
],
"properties": {
"probability_ppm": {
"type": "u64",
"description": [
"The estimated probability of success using this route, in millionths."
]
},
"amount_msat": {
"type": "msat",
"description": [
"The amount delivered to the *destination* by this path."
]
},
"final_cltv": {
"type": "u32",
"description": [
"Number of blocks required by the final node (set by caller)"
]
},
"path": {
"type": "array",
"description": [
"The hops to get from *source* to *destination*."
],
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"short_channel_id_dir",
"next_node_id",
"amount_msat",
"delay"
],
"properties": {
"short_channel_id_dir": {
"type": "short_channel_id_dir",
"description": [
"The channel and direction joining these nodes."
]
},
"amount_msat": {
"type": "msat",
"description": [
"The amount to send into this hop."
]
},
"next_node_id": {
"type": "pubkey",
"description": [
"The peer id at the end of this hop."
]
},
"delay": {
"type": "u32",
"description": [
"The total CLTV expected by the node at the start of this hop."
]
}
}
}
}
}
}
}
}
},
"author": [
"<<lagrang3@protonmail.com>> wrote the minimum-cost-flow solver, Rusty Russell <<rusty@rustcorp.com.au>> wrote the API and this documentation."
],
"see_also": [
"lightning-askrene-reserve(7)",
"lightning-askrene-unreserve(7)",
"lightning-askrene-disable-node(7)",
"lightning-askrene-create-channel(7)",
"lightning-askrene-inform-channel(7)",
"lightning-askrene-report(7)",
"lightning-askrene-age(7)"
],
"resources": [
"Main web site: <https://github.com/ElementsProject/lightning>"
],
"examples": [
{
"request": {
"id": "example:getroutes#1",
"method": "getroutes",
"params": {
"source": "nodeid010101010101010101010101010101010101010101010101010101010101",
"destination": "nodeid030303030303030303030303030303030303030303030303030303030303",
"amount_msat": 1250000,
"layers": [],
"maxfee_msat": 125000,
"final_cltv": 0
}
},
"response": {
"probability_ppm": 997501,
"routes": [
{
"probability_ppm": 997501,
"amount_msat": 1250000,
"final_cltv": 0,
"path": [
{
"short_channel_id_dir": "109x1x1/1",
"next_node_id": "nodeid020202020202020202020202020202020202020202020202020202020202",
"amount_msat": 1250026,
"delay": 12
},
{
"short_channel_id_dir": "123x1x1/0",
"next_node_id": "nodeid030303030303030303030303030303030303030303030303030303030303",
"amount_msat": 1250013,
"delay": 6
}
]
}
]
}
}
]
}