Struct ldk_node::Node

source ·
pub struct Node<K: KVStore + Sync + Send + 'static> { /* private fields */ }
Expand description

The main interface object of LDK Node, wrapping the necessary LDK and BDK functionalities.

Needs to be initialized and instantiated through Builder::build.

Implementations§

source§

impl<K: KVStore + Sync + Send + 'static> Node<K>

source

pub fn start(&self) -> Result<(), Error>

Starts the necessary background tasks, such as handling events coming from user input, LDK/BDK, and the peer-to-peer network.

After this returns, the Node instance can be controlled via the provided API methods in a thread-safe manner.

source

pub fn stop(&self) -> Result<(), Error>

Disconnects all peers, stops all running background tasks, and shuts down Node.

After this returns most API methods will return Error::NotRunning.

source

pub fn next_event(&self) -> Option<Event>

Returns the next event in the event queue, if currently available.

Will return Some(..) if an event is available and None otherwise.

Note: this will always return the same event until handling is confirmed via Node::event_handled.

source

pub fn wait_next_event(&self) -> Event

Returns the next event in the event queue.

Will block the current thread until the next event is available.

Note: this will always return the same event until handling is confirmed via Node::event_handled.

source

pub fn event_handled(&self)

Confirm the last retrieved event handled.

Note: This MUST be called after each event has been handled.

source

pub fn node_id(&self) -> PublicKey

Returns our own node id

source

pub fn listening_address(&self) -> Option<NetAddress>

Returns our own listening address.

source

pub fn new_onchain_address(&self) -> Result<Address, Error>

Retrieve a new on-chain/funding address.

source

pub fn spendable_onchain_balance_sats(&self) -> Result<u64, Error>

Retrieve the currently spendable on-chain balance in satoshis.

source

pub fn total_onchain_balance_sats(&self) -> Result<u64, Error>

Retrieve the current total on-chain balance in satoshis.

source

pub fn send_to_onchain_address( &self, address: &Address, amount_sats: u64 ) -> Result<Txid, Error>

Send an on-chain payment to the given address.

source

pub fn send_all_to_onchain_address( &self, address: &Address ) -> Result<Txid, Error>

Send an on-chain payment to the given address, draining all the available funds.

source

pub fn list_channels(&self) -> Vec<ChannelDetails>

Retrieve a list of known channels.

source

pub fn connect( &self, node_id: PublicKey, address: NetAddress, persist: bool ) -> Result<(), Error>

Connect to a node on the peer-to-peer network.

If persist is set to true, we’ll remember the peer and reconnect to it on restart.

source

pub fn disconnect(&self, counterparty_node_id: PublicKey) -> Result<(), Error>

Disconnects the peer with the given node id.

Will also remove the peer from the peer store, i.e., after this has been called we won’t try to reconnect on restart.

source

pub fn connect_open_channel( &self, node_id: PublicKey, address: NetAddress, channel_amount_sats: u64, push_to_counterparty_msat: Option<u64>, channel_config: Option<ChannelConfig>, announce_channel: bool ) -> Result<(), Error>

Connect to a node and open a new channel. Disconnects and re-connects are handled automatically

Disconnects and reconnects are handled automatically.

If push_to_counterparty_msat is set, the given value will be pushed (read: sent) to the channel counterparty on channel open. This can be useful to start out with the balance not entirely shifted to one side, therefore allowing to receive payments from the getgo.

Returns a temporary channel id.

source

pub fn sync_wallets(&self) -> Result<(), Error>

Manually sync the LDK and BDK wallets with the current chain state.

Note: The wallets are regularly synced in the background, which is configurable via Config::onchain_wallet_sync_interval_secs and Config::wallet_sync_interval_secs. Therefore, using this blocking sync method is almost always redudant and should be avoided where possible.

source

pub fn close_channel( &self, channel_id: &ChannelId, counterparty_node_id: PublicKey ) -> Result<(), Error>

Close a previously opened channel.

source

pub fn update_channel_config( &self, channel_id: &ChannelId, counterparty_node_id: PublicKey, channel_config: &ChannelConfig ) -> Result<(), Error>

Update the config for a previously opened channel.

source

pub fn send_payment(&self, invoice: &Invoice) -> Result<PaymentHash, Error>

Send a payement given an invoice.

source

pub fn send_payment_using_amount( &self, invoice: &Invoice, amount_msat: u64 ) -> Result<PaymentHash, Error>

Send a payment given an invoice and an amount in millisatoshi.

This will fail if the amount given is less than the value required by the given invoice.

This can be used to pay a so-called “zero-amount” invoice, i.e., an invoice that leaves the amount paid to be determined by the user.

source

pub fn send_spontaneous_payment( &self, amount_msat: u64, node_id: PublicKey ) -> Result<PaymentHash, Error>

Send a spontaneous, aka. “keysend”, payment

source

pub fn receive_payment( &self, amount_msat: u64, description: &str, expiry_secs: u32 ) -> Result<Invoice, Error>

Returns a payable invoice that can be used to request and receive a payment of the amount given.

source

pub fn receive_variable_amount_payment( &self, description: &str, expiry_secs: u32 ) -> Result<Invoice, Error>

Returns a payable invoice that can be used to request and receive a payment for which the amount is to be determined by the user, also known as a “zero-amount” invoice.

source

pub fn payment(&self, payment_hash: &PaymentHash) -> Option<PaymentDetails>

Retrieve the details of a specific payment with the given hash.

Returns Some if the payment was known and None otherwise.

source

pub fn remove_payment(&self, payment_hash: &PaymentHash) -> Result<bool, Error>

Remove the payment with the given hash from the store.

Returns true if the payment was present and false otherwise.

source

pub fn list_payments_with_filter<F: FnMut(&&PaymentDetails) -> bool>( &self, f: F ) -> Vec<PaymentDetails>

Retrieves all payments that match the given predicate.

For example, you could retrieve all stored outbound payments as follows:

node.list_payments_with_filter(|p| p.direction == PaymentDirection::Outbound);
source

pub fn list_payments(&self) -> Vec<PaymentDetails>

Retrieves all payments.

source

pub fn list_peers(&self) -> Vec<PeerDetails>

Retrieves a list of known peers.

source

pub fn sign_message(&self, msg: &[u8]) -> Result<String, Error>

Creates a digital ECDSA signature of a message with the node’s secret key.

A receiver knowing the corresponding PublicKey (e.g. the node’s id) and the message can be sure that the signature was generated by the caller. Signatures are EC recoverable, meaning that given the message and the signature the PublicKey of the signer can be extracted.

source

pub fn verify_signature(&self, msg: &[u8], sig: &str, pkey: &PublicKey) -> bool

Verifies that the given ECDSA signature was created for the given message with the secret key corresponding to the given public key.

Trait Implementations§

source§

impl<K: KVStore + Sync + Send + 'static> Drop for Node<K>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<K> !RefUnwindSafe for Node<K>

§

impl<K> Send for Node<K>

§

impl<K> Sync for Node<K>

§

impl<K> Unpin for Node<K>

§

impl<K> !UnwindSafe for Node<K>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more