Module breez_sdk_liquid::lightning::routing::router

Expand description

The router finds paths within a NetworkGraph for a payment.

Structs§

  • The blinded portion of a Path, if we’re routing to a recipient who provided blinded paths in their Bolt12Invoice.
  • A Router implemented using find_route.
  • A data structure for tracking in-flight HTLCs. May be used during pathfinding to account for in-use channel liquidity.
  • A path in a Route to the payment recipient. Must always be at least length one. If no Path::blinded_tail is present, then Path::hops length may be up to 19.
  • Information used to route a payment.
  • A route directs a payment from the sender (us) to the recipient. If the recipient supports MPP, it can take multiple paths. Each path is composed of one or more hops through the network.
  • A list of hops along a payment path terminating with a channel to the recipient.
  • A channel descriptor for a hop along a payment path.
  • A hop in a route, and additional metadata about it. “Hop” is defined as a node and the channel that leads to it.
  • Parameters needed to find a Route.
  • Score implementation that factors in in-flight HTLC liquidity.

Enums§

  • The recipient of a payment, differing based on whether they’ve hidden their identity with route blinding.

Constants§

Traits§

  • A trait defining behavior for routing a payment.

Functions§

  • Construct a route from us (payer) to the target node (payee) via the given hops (which should exclude the payer, but include the payee). This may be useful, e.g., for probing the chosen path.
  • Finds a route from us (payer) to the given target node (payee).