getroute

getroute -- Command for routing a payment (low-level)

SYNOPSIS

getroute id amount_msat riskfactor [cltv] [fromid] [fuzzpercent] [exclude] [maxhops]

DESCRIPTION

The getroute RPC command attempts to find the best route for the payment of amount_msat to lightning node id, such that the payment will arrive at id with cltv.

There are two considerations for how good a route is: how low the fees are, and how long your payment will get stuck in a delayed output if a node goes down during the process. .

  • id (pubkey): Node pubkey to find the best route for the payment.
  • amount_msat (msat): 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. The 0 value is special: it ignores any htlc_minimum_msat setting on channels, and simply returns a possible route (if any) which is useful for simple probing.
  • riskfactor (u64): A non-negative floating-point field controls this tradeoff; it is the annual cost of your funds being stuck (as a percentage). For example, if you thought the convenience of keeping your funds liquid (not stuck) was worth 20% per annum interest, riskfactor would be 20. If you didn't care about risk, riskfactor would be zero.
  • cltv (u32, optional): Cltv-blocks to spare. The default is 9.
  • fromid (pubkey, optional): The node to start the route from. The default is this node.
  • fuzzpercent (u32, optional): Used to distort fees to provide some randomization to the route generated, but it was not properly implemented and is ignored.
  • exclude (array of strings, optional): A JSON array of short-channel-id/direction (e.g. ['564334x877x1/0', '564195x1292x0/1' ]) or node-id which should be excluded from consideration for routing. Note if the source or destination is excluded, the command result is undefined. The default is not to exclude any channels or nodes.:
    • (string, optional)
  • maxhops (u32, optional): The maximum number of channels to return. The default is 20.

RISKFACTOR EFFECT ON ROUTING

The risk factor is treated as if it were an additional fee on the route, for the purposes of comparing routes.

The formula used is the following approximation:

risk-fee = amount x blocks-timeout x per-block-cost

We are given a riskfactor expressed as a percentage. There are 52596 blocks per year, thus per-block-cost is riskfactor divided by 5,259,600.

The final result is:

risk-fee = amount x blocks-timeout x riskfactor / 5259600

Here are the risk fees in millisatoshis, using various parameters. I assume a channel charges the default of 1000 millisatoshis plus 1 part-per-million. Common to_self_delay values on the network at 14 and 144 blocks.

Amount (msat)RiskfactorDelayRisk FeeRoute fee
10,00011401001
10,000101401001
10,0001001421001
10,000100014261001
1,000,00011421001
1,000,0001014261001
1,000,000100142661001
1,000,00010001426611001
100,000,0001142661100
100,000,000101426611100
100,000,00010014266171100
100,000,0001000142661791100
10,000114401001
10,0001014421001
10,000100144271001
10,00010001442731001
1,000,0001144271001
1,000,000101442731001
1,000,00010014427371001
1,000,0001000144273781001
100,000,000114427371100
100,000,00010144273781100
100,000,0001001442737851100
100,000,000100014427378501100

RECOMMENDED RISKFACTOR VALUES

The default fuzz factor is 5%, so as you can see from the table above, that tends to overwhelm the effect of riskfactor less than about 5.

1 is a conservative value for a stable lightning network with very few failures.

1000 is an aggressive value for trying to minimize timeouts at all costs.

The default for lightning-pay(7) is 10, which starts to become a major factor for larger amounts, and is basically ignored for tiny ones.

RETURN VALUE

On success, an object containing route is returned. It is an array of objects, where each object contains:

  • id (pubkey): The node at the end of this hop.
  • channel (short_channel_id): The channel joining these nodes.
  • direction (u32): 0 if this channel is traversed from lesser to greater id, otherwise 1.
  • amount_msat (msat): The amount expected by the node at the end of this hop.
  • delay (u32): The total CLTV expected by the node at the end of this hop.
  • style (string) (always "tlv"): The features understood by the destination node.

The final id will be the destination id given in the input. The difference between the first amount_msat minus the amount_msat given in the input is the fee (assuming the first hop is free). The first delay is the very worst case timeout for the payment failure, in blocks.

AUTHOR

Rusty Russell [email protected] is mainly responsible.

SEE ALSO

lightning-pay(7), lightning-sendpay(7)

RESOURCES

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

EXAMPLES

Example 1:

Request:

lightning-cli getroute -k "id"="nodeid030303030303030303030303030303030303030303030303030303030303" "amount_msat"=10000 "riskfactor"=1
{
  "id": "example:getroute#1",
  "method": "getroute",
  "params": {
    "id": "nodeid030303030303030303030303030303030303030303030303030303030303",
    "amount_msat": 10000,
    "riskfactor": 1
  }
}

Response:

{
  "route": [
    {
      "id": "nodeid020202020202020202020202020202020202020202020202020202020202",
      "channel": "109x1x1",
      "direction": 1,
      "amount_msat": 10001,
      "delay": 15,
      "style": "tlv"
    },
    {
      "id": "nodeid030303030303030303030303030303030303030303030303030303030303",
      "channel": "111x1x1",
      "direction": 0,
      "amount_msat": 10000,
      "delay": 9,
      "style": "tlv"
    }
  ]
}

Example 2:

Request:

lightning-cli getroute -k "id"="nodeid040404040404040404040404040404040404040404040404040404040404" "amount_msat"=500000 "riskfactor"=10 "cltv"=9
{
  "id": "example:getroute#2",
  "method": "getroute",
  "params": {
    "id": "nodeid040404040404040404040404040404040404040404040404040404040404",
    "amount_msat": 500000,
    "riskfactor": 10,
    "cltv": 9
  }
}

Response:

{
  "route": [
    {
      "id": "nodeid030303030303030303030303030303030303030303030303030303030303",
      "channel": "111x1x1",
      "direction": 0,
      "amount_msat": 500006,
      "delay": 15,
      "style": "tlv"
    },
    {
      "id": "nodeid040404040404040404040404040404040404040404040404040404040404",
      "channel": "125x1x1",
      "direction": 0,
      "amount_msat": 500000,
      "delay": 9,
      "style": "tlv"
    }
  ]
}

Core Lightning is Blockstream's open-source implementation of the Lightning Network optimised for performance. It is highly customizable through modular expandability.

© 2023 Core Lightning
All rights reserved.

X Twitter Logo Streamline Icon: https://streamlinehq.com

X

The official Core Lightning X(Twitter) handle to follow project updates and announcements.

Github Logo 2 Streamline Icon: https://streamlinehq.com

Github

Github repository for source code, issues, and contributions. Visit our project here to explore or contibute.

Telegram

Community-driven telegram group where most of the node operators hang out. Go to https://t.me/lightningd to join.

Discord

Community-driven discord server where the devs flock together. Go to https://discord.gg/V6ay9yNhBQ to join.