pub struct Gateway { /* private fields */ }
Implementations§
source§impl Gateway
impl Gateway
sourcepub async fn new_with_custom_registry(
lightning_builder: Arc<dyn LightningBuilder + Send + Sync>,
client_builder: GatewayClientBuilder,
listen: SocketAddr,
api_addr: SafeUrl,
cli_password: Option<String>,
network: Option<Network>,
fees: RoutingFees,
num_route_hints: u32,
gateway_db: Database,
gateway_state: GatewayState,
) -> Result<Gateway>
pub async fn new_with_custom_registry( lightning_builder: Arc<dyn LightningBuilder + Send + Sync>, client_builder: GatewayClientBuilder, listen: SocketAddr, api_addr: SafeUrl, cli_password: Option<String>, network: Option<Network>, fees: RoutingFees, num_route_hints: u32, gateway_db: Database, gateway_state: GatewayState, ) -> Result<Gateway>
Creates a new gateway but with a custom module registry provided inside
client_builder
. Currently only used for testing.
sourcepub async fn new_with_default_modules() -> Result<Gateway>
pub async fn new_with_default_modules() -> Result<Gateway>
Default function for creating a gateway with the Mint
, Wallet
, and
Gateway
modules.
pub fn gateway_id(&self) -> PublicKey
pub fn versioned_api(&self) -> &SafeUrl
pub async fn clone_gateway_config(&self) -> Option<GatewayConfiguration>
pub async fn get_state(&self) -> GatewayState
sourcepub async fn dump_database<'a>(
dbtx: &mut DatabaseTransaction<'_>,
prefix_names: Vec<String>,
) -> Box<dyn Iterator<Item = (String, Box<dyn Serialize + Send>)> + 'a>
pub async fn dump_database<'a>( dbtx: &mut DatabaseTransaction<'_>, prefix_names: Vec<String>, ) -> Box<dyn Iterator<Item = (String, Box<dyn Serialize + Send>)> + 'a>
Reads and serializes structures from the Gateway’s database for the purpose for serializing to JSON for inspection.
sourcepub async fn run(self, tg: &TaskGroup) -> Result<TaskShutdownToken>
pub async fn run(self, tg: &TaskGroup) -> Result<TaskShutdownToken>
Main entrypoint into the gateway that starts the client registration timer, loads the federation clients from the persisted config, begins listening for intercepted HTLCs, and starts the webserver to service requests.
sourcepub async fn handle_htlc_stream(
&self,
stream: RouteHtlcStream<'_>,
handle: TaskHandle,
)
pub async fn handle_htlc_stream( &self, stream: RouteHtlcStream<'_>, handle: TaskHandle, )
Blocks waiting for intercepted HTLCs to be sent over the stream
.
Spawns a state machine to either forward, cancel, or complete the
HTLC depending on if the gateway is able to acquire the preimage from
the federation.
sourcepub async fn handle_get_info(&self) -> Result<GatewayInfo>
pub async fn handle_get_info(&self) -> Result<GatewayInfo>
Returns information about the Gateway back to the client when requested via the webserver.
sourcepub async fn handle_get_federation_config(
&self,
federation_id_or: Option<FederationId>,
) -> Result<GatewayFedConfig>
pub async fn handle_get_federation_config( &self, federation_id_or: Option<FederationId>, ) -> Result<GatewayFedConfig>
If the Gateway is connected to the Lightning node, returns the
ClientConfig
for each federation that the Gateway is connected to.
sourcepub async fn handle_balance_msg(
&self,
payload: BalancePayload,
) -> Result<Amount>
pub async fn handle_balance_msg( &self, payload: BalancePayload, ) -> Result<Amount>
Returns the balance of the requested federation that the Gateway is connected to.
sourcepub async fn handle_address_msg(
&self,
payload: DepositAddressPayload,
) -> Result<Address>
pub async fn handle_address_msg( &self, payload: DepositAddressPayload, ) -> Result<Address>
Returns a Bitcoin deposit on-chain address for pegging in Bitcoin for a specific connected federation.
sourcepub async fn handle_withdraw_msg(
&self,
payload: WithdrawPayload,
) -> Result<Txid>
pub async fn handle_withdraw_msg( &self, payload: WithdrawPayload, ) -> Result<Txid>
Returns a Bitcoin TXID from a peg-out transaction for a specific connected federation.
sourcepub async fn handle_connect_federation(
&self,
payload: ConnectFedPayload,
) -> Result<FederationInfo>
pub async fn handle_connect_federation( &self, payload: ConnectFedPayload, ) -> Result<FederationInfo>
Handles a connection request to join a new federation. The gateway will download the federation’s client configuration, construct a new client, registers, the gateway with the federation, and persists the necessary config to reconstruct the client when restarting the gateway.
sourcepub async fn handle_leave_federation(
&self,
payload: LeaveFedPayload,
) -> Result<FederationInfo>
pub async fn handle_leave_federation( &self, payload: LeaveFedPayload, ) -> Result<FederationInfo>
Handle a request to have the Gateway leave a federation. The Gateway will request the federation to remove the registration record and the gateway will remove the configuration needed to construct the federation client.
sourcepub fn handle_backup_msg(&self, _: BackupPayload) -> Result<()>
pub fn handle_backup_msg(&self, _: BackupPayload) -> Result<()>
Handles a request for the gateway to backup a connected federation’s ecash. Not currently supported.
sourcepub fn handle_restore_msg(&self, _: RestorePayload) -> Result<()>
pub fn handle_restore_msg(&self, _: RestorePayload) -> Result<()>
Handles a request for the gateway to restore a connected federation’s ecash. Not currently supported.
sourcepub async fn handle_set_configuration_msg(
&self,
__arg1: SetConfigurationPayload,
) -> Result<()>
pub async fn handle_set_configuration_msg( &self, __arg1: SetConfigurationPayload, ) -> Result<()>
Handle a request to change a connected federation’s configuration or
gateway metadata. If num_route_hints
is changed, the Gateway
will re-register with all connected federations. If
per_federation_routing_fees
is changed, the Gateway will only
re-register with the specified federation.
pub async fn handle_get_funding_address_msg(&self) -> Result<Address>
sourcepub async fn handle_open_channel_msg(
&self,
__arg1: OpenChannelPayload,
) -> Result<()>
pub async fn handle_open_channel_msg( &self, __arg1: OpenChannelPayload, ) -> Result<()>
Instructs the Gateway’s Lightning node to open a channel to a peer
specified by pubkey
.
sourcepub async fn handle_close_channels_with_peer_msg(
&self,
__arg1: CloseChannelsWithPeerPayload,
) -> Result<CloseChannelsWithPeerResponse>
pub async fn handle_close_channels_with_peer_msg( &self, __arg1: CloseChannelsWithPeerPayload, ) -> Result<CloseChannelsWithPeerResponse>
Instructs the Gateway’s Lightning node to close all channels with a peer
specified by pubkey
.
sourcepub async fn handle_list_active_channels_msg(&self) -> Result<Vec<ChannelInfo>>
pub async fn handle_list_active_channels_msg(&self) -> Result<Vec<ChannelInfo>>
Returns a list of Lightning network channels from the Gateway’s Lightning node.
sourcepub async fn select_client(
&self,
federation_id: FederationId,
) -> Result<Spanned<ClientHandleArc>>
pub async fn select_client( &self, federation_id: FederationId, ) -> Result<Spanned<ClientHandleArc>>
Retrieves a ClientHandleArc
from the Gateway’s in memory structures
that keep track of available clients, given a federation_id
.
sourcepub async fn get_lightning_context(
&self,
) -> Result<LightningContext, LightningRpcError>
pub async fn get_lightning_context( &self, ) -> Result<LightningContext, LightningRpcError>
Checks the Gateway’s current state and returns the proper
LightningContext
if it is available. Sometimes the lightning node
will not be connected and this will return an error.
sourcepub async fn unannounce_from_all_federations(&self)
pub async fn unannounce_from_all_federations(&self)
Iterates through all of the federations the gateway is registered with and requests to remove the registration record.
source§impl Gateway
impl Gateway
sourcepub async fn routing_info_v2(
&self,
federation_id: &FederationId,
) -> Option<RoutingInfo>
pub async fn routing_info_v2( &self, federation_id: &FederationId, ) -> Option<RoutingInfo>
Returns payment information that LNv2 clients can use to instruct this Gateway to pay an invoice or receive a payment.
pub async fn select_client_v2( &self, federation_id: FederationId, ) -> Result<ClientHandleArc>
sourcepub async fn create_invoice_via_lnrpc_v2(
&self,
payment_hash: Hash,
amount: Amount,
description: Bolt11InvoiceDescription,
expiry_time: u32,
) -> Result<Bolt11Invoice, String>
pub async fn create_invoice_via_lnrpc_v2( &self, payment_hash: Hash, amount: Amount, description: Bolt11InvoiceDescription, expiry_time: u32, ) -> Result<Bolt11Invoice, String>
Retrieves a BOLT11 invoice from the connected Lightning node with a
specific payment_hash
.
sourcepub async fn get_registered_incoming_contract_and_client_v2(
&self,
payment_hash: [u8; 32],
amount_msats: u64,
) -> Result<(IncomingContract, ClientHandleArc)>
pub async fn get_registered_incoming_contract_and_client_v2( &self, payment_hash: [u8; 32], amount_msats: u64, ) -> Result<(IncomingContract, ClientHandleArc)>
Retrieves the persisted CreateInvoicePayload
from the database
specified by the payment_hash
and the ClientHandleArc
specified
by the payload’s federation_id
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Gateway
impl !RefUnwindSafe for Gateway
impl Send for Gateway
impl Sync for Gateway
impl Unpin for Gateway
impl !UnwindSafe for Gateway
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> FmtForward for T
impl<T> FmtForward for T
source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request
source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moresource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moresource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.source§impl<T> Tap for T
impl<T> Tap for T
source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read moresource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read moresource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read moresource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read moresource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read moresource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read moresource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.