pub struct Client { /* private fields */ }
Expand description

Generalized Electrum client that supports multiple backends. Can re-instantiate client_type if connections drops

Implementations

Default constructor supporting multiple backends by providing a prefix

Supported prefixes are:

  • tcp:// for a TCP plaintext client.
  • ssl:// for an SSL-encrypted client. The server certificate will be verified.

If no prefix is specified, then tcp:// is assumed.

See Client::from_config for more configuration options

Generic constructor that supports multiple backends and allows configuration through the Config

Trait Implementations

Executes the requested API call returning the raw answer.

Execute a queue of calls stored in a Batch struct. Returns Ok() only if all of the calls are successful. The order of the JSON Values returned reflects the order in which the calls were made on the Batch struct. Read more

Subscribes to notifications for new block headers, by sending a blockchain.headers.subscribe call and returns the current tip as raw bytes instead of deserializing them. Read more

Tries to pop one queued notification for a new block header that we might have received. Returns a the header in raw bytes if a notification is found in the queue, None otherwise. Read more

Gets the raw bytes of block header for height height.

Tries to fetch count block headers starting from start_height.

Estimates the fee required in Bitcoin per kilobyte to confirm a transaction in number blocks.

Returns the minimum accepted fee by the server’s node in Bitcoin, not Satoshi.

Subscribes to notifications for activity on a specific scriptPubKey. Read more

Subscribes to notifications for activity on a specific scriptPubKey. Read more

Tries to pop one queued notification for a the requested script. Returns None if there are no items in the queue.

Returns the balance for a scriptPubKey.

Batch version of script_get_balance. Read more

Returns the history for a scriptPubKey

Batch version of script_get_history. Read more

Returns the list of unspent outputs for a scriptPubKey

Batch version of script_list_unspent. Read more

Gets the raw bytes of a transaction with txid. Returns an error if not found.

Batch version of transaction_get_raw. Read more

Batch version of block_header_raw. Read more

Batch version of estimate_fee. Read more

Broadcasts the raw bytes of a transaction to the network.

Returns the merkle path for the transaction txid confirmed in the block at height.

Returns the capabilities of the server.

Pings the server. This method can also be used as a “dummy” call to trigger the processing of incoming block header or script notifications. Read more

Gets the block header for height height.

Subscribes to notifications for new block headers, by sending a blockchain.headers.subscribe call.

Tries to pop one queued notification for a new block header that we might have received. Returns None if there are no items in the queue. Read more

Gets the transaction with txid. Returns an error if not found.

Batch version of transaction_get. Read more

Batch version of block_header. Read more

Broadcasts a transaction to the network.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.