2021-03-03 13:22:05 -08:00
|
|
|
// Bitcoin Dev Kit
|
|
|
|
// Written in 2020 by Alekos Filini <alekos.filini@gmail.com>
|
2020-08-31 11:26:36 +02:00
|
|
|
//
|
2021-03-03 13:22:05 -08:00
|
|
|
// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers
|
2020-08-31 11:26:36 +02:00
|
|
|
//
|
2021-03-03 13:22:05 -08:00
|
|
|
// This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
|
|
|
|
// or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
|
|
|
|
// You may not use this file except in accordance with one or both of these
|
|
|
|
// licenses.
|
2020-08-31 11:26:36 +02:00
|
|
|
|
2020-09-03 11:36:07 +02:00
|
|
|
//! Electrum
|
|
|
|
//!
|
2020-09-09 18:17:49 +02:00
|
|
|
//! This module defines a [`Blockchain`] struct that wraps an [`electrum_client::Client`]
|
2020-09-03 11:36:07 +02:00
|
|
|
//! and implements the logic required to populate the wallet's [database](crate::database::Database) by
|
|
|
|
//! querying the inner client.
|
|
|
|
//!
|
|
|
|
//! ## Example
|
|
|
|
//!
|
|
|
|
//! ```no_run
|
2020-09-14 14:25:38 +02:00
|
|
|
//! # use bdk::blockchain::electrum::ElectrumBlockchain;
|
2020-11-24 12:16:49 +01:00
|
|
|
//! let client = electrum_client::Client::new("ssl://electrum.blockstream.info:50002")?;
|
2020-09-03 11:36:07 +02:00
|
|
|
//! let blockchain = ElectrumBlockchain::from(client);
|
2020-09-14 14:25:38 +02:00
|
|
|
//! # Ok::<(), bdk::Error>(())
|
2020-09-03 11:36:07 +02:00
|
|
|
//! ```
|
|
|
|
|
2021-10-29 17:41:02 +11:00
|
|
|
use std::collections::{HashMap, HashSet};
|
2020-05-03 16:15:11 +02:00
|
|
|
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
use log::{debug, error, info, trace};
|
|
|
|
|
2021-10-29 17:41:02 +11:00
|
|
|
use bitcoin::{Transaction, Txid};
|
2020-05-03 16:15:11 +02:00
|
|
|
|
2020-11-24 12:16:49 +01:00
|
|
|
use electrum_client::{Client, ConfigBuilder, ElectrumApi, Socks5Config};
|
2020-05-03 16:15:11 +02:00
|
|
|
|
2021-10-29 17:41:02 +11:00
|
|
|
use super::script_sync::Request;
|
2020-05-03 16:15:11 +02:00
|
|
|
use super::*;
|
2021-10-29 17:41:02 +11:00
|
|
|
use crate::database::{BatchDatabase, Database};
|
2020-05-03 16:15:11 +02:00
|
|
|
use crate::error::Error;
|
2021-11-23 11:28:18 +11:00
|
|
|
use crate::{BlockTime, FeeRate};
|
2020-05-03 16:15:11 +02:00
|
|
|
|
2020-09-03 11:36:07 +02:00
|
|
|
/// Wrapper over an Electrum Client that implements the required blockchain traits
|
|
|
|
///
|
|
|
|
/// ## Example
|
|
|
|
/// See the [`blockchain::electrum`](crate::blockchain::electrum) module for a usage example.
|
2021-07-15 10:55:49 -07:00
|
|
|
pub struct ElectrumBlockchain {
|
|
|
|
client: Client,
|
|
|
|
stop_gap: usize,
|
|
|
|
}
|
2020-05-03 16:15:11 +02:00
|
|
|
|
2020-07-15 18:49:24 +02:00
|
|
|
impl std::convert::From<Client> for ElectrumBlockchain {
|
|
|
|
fn from(client: Client) -> Self {
|
2021-07-15 10:55:49 -07:00
|
|
|
ElectrumBlockchain {
|
|
|
|
client,
|
|
|
|
stop_gap: 20,
|
|
|
|
}
|
2020-05-03 16:15:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-15 18:49:24 +02:00
|
|
|
impl Blockchain for ElectrumBlockchain {
|
|
|
|
fn get_capabilities(&self) -> HashSet<Capability> {
|
2020-08-25 16:07:26 +02:00
|
|
|
vec![
|
|
|
|
Capability::FullHistory,
|
|
|
|
Capability::GetAnyTx,
|
|
|
|
Capability::AccurateFees,
|
|
|
|
]
|
|
|
|
.into_iter()
|
|
|
|
.collect()
|
2020-05-03 16:15:11 +02:00
|
|
|
}
|
|
|
|
|
2022-01-26 15:17:48 +11:00
|
|
|
fn broadcast(&self, tx: &Transaction) -> Result<(), Error> {
|
|
|
|
Ok(self.client.transaction_broadcast(tx).map(|_| ())?)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn estimate_fee(&self, target: usize) -> Result<FeeRate, Error> {
|
|
|
|
Ok(FeeRate::from_btc_per_kvb(
|
|
|
|
self.client.estimate_fee(target)? as f32
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-15 10:48:00 +01:00
|
|
|
impl StatelessBlockchain for ElectrumBlockchain {}
|
|
|
|
|
2022-01-26 15:17:48 +11:00
|
|
|
impl GetHeight for ElectrumBlockchain {
|
|
|
|
fn get_height(&self) -> Result<u32, Error> {
|
|
|
|
// TODO: unsubscribe when added to the client, or is there a better call to use here?
|
|
|
|
|
|
|
|
Ok(self
|
|
|
|
.client
|
|
|
|
.block_headers_subscribe()
|
|
|
|
.map(|data| data.height as u32)?)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-23 10:38:35 +11:00
|
|
|
impl GetTx for ElectrumBlockchain {
|
|
|
|
fn get_tx(&self, txid: &Txid) -> Result<Option<Transaction>, Error> {
|
|
|
|
Ok(self.client.transaction_get(txid).map(Option::Some)?)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-26 15:17:48 +11:00
|
|
|
impl WalletSync for ElectrumBlockchain {
|
2022-01-27 16:52:53 +11:00
|
|
|
fn wallet_setup<D: BatchDatabase>(
|
2020-08-06 10:44:40 +02:00
|
|
|
&self,
|
2020-05-03 16:15:11 +02:00
|
|
|
database: &mut D,
|
2022-01-27 16:52:53 +11:00
|
|
|
_progress_update: Box<dyn Progress>,
|
2020-05-03 16:15:11 +02:00
|
|
|
) -> Result<(), Error> {
|
2021-10-29 17:41:02 +11:00
|
|
|
let mut request = script_sync::start(database, self.stop_gap)?;
|
|
|
|
let mut block_times = HashMap::<u32, u32>::new();
|
|
|
|
let mut txid_to_height = HashMap::<Txid, u32>::new();
|
|
|
|
let mut tx_cache = TxCache::new(database, &self.client);
|
|
|
|
let chunk_size = self.stop_gap;
|
|
|
|
// The electrum server has been inconsistent somehow in its responses during sync. For
|
|
|
|
// example, we do a batch request of transactions and the response contains less
|
|
|
|
// tranascations than in the request. This should never happen but we don't want to panic.
|
|
|
|
let electrum_goof = || Error::Generic("electrum server misbehaving".to_string());
|
|
|
|
|
|
|
|
let batch_update = loop {
|
|
|
|
request = match request {
|
|
|
|
Request::Script(script_req) => {
|
|
|
|
let scripts = script_req.request().take(chunk_size);
|
|
|
|
let txids_per_script: Vec<Vec<_>> = self
|
|
|
|
.client
|
|
|
|
.batch_script_get_history(scripts)
|
|
|
|
.map_err(Error::Electrum)?
|
|
|
|
.into_iter()
|
|
|
|
.map(|txs| {
|
|
|
|
txs.into_iter()
|
|
|
|
.map(|tx| {
|
|
|
|
let tx_height = match tx.height {
|
|
|
|
none if none <= 0 => None,
|
|
|
|
height => {
|
|
|
|
txid_to_height.insert(tx.tx_hash, height as u32);
|
|
|
|
Some(height as u32)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
(tx.tx_hash, tx_height)
|
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
script_req.satisfy(txids_per_script)?
|
|
|
|
}
|
|
|
|
|
2021-11-02 17:22:24 +11:00
|
|
|
Request::Conftime(conftime_req) => {
|
2021-11-02 16:49:19 +11:00
|
|
|
// collect up to chunk_size heights to fetch from electrum
|
|
|
|
let needs_block_height = {
|
2021-11-02 17:22:24 +11:00
|
|
|
let mut needs_block_height_iter = conftime_req
|
2021-11-02 16:49:19 +11:00
|
|
|
.request()
|
|
|
|
.filter_map(|txid| txid_to_height.get(txid).cloned())
|
|
|
|
.filter(|height| block_times.get(height).is_none());
|
|
|
|
let mut needs_block_height = HashSet::new();
|
|
|
|
|
|
|
|
while needs_block_height.len() < chunk_size {
|
|
|
|
match needs_block_height_iter.next() {
|
|
|
|
Some(height) => needs_block_height.insert(height),
|
|
|
|
None => break,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
needs_block_height
|
|
|
|
};
|
|
|
|
|
|
|
|
let new_block_headers = self
|
|
|
|
.client
|
|
|
|
.batch_block_header(needs_block_height.iter().cloned())?;
|
2021-10-29 17:41:02 +11:00
|
|
|
|
|
|
|
for (height, header) in needs_block_height.into_iter().zip(new_block_headers) {
|
|
|
|
block_times.insert(height, header.time);
|
|
|
|
}
|
|
|
|
|
2021-11-02 17:22:24 +11:00
|
|
|
let conftimes = conftime_req
|
2021-10-29 17:41:02 +11:00
|
|
|
.request()
|
|
|
|
.take(chunk_size)
|
|
|
|
.map(|txid| {
|
|
|
|
let confirmation_time = txid_to_height
|
|
|
|
.get(txid)
|
|
|
|
.map(|height| {
|
|
|
|
let timestamp =
|
|
|
|
*block_times.get(height).ok_or_else(electrum_goof)?;
|
2021-11-23 11:28:18 +11:00
|
|
|
Result::<_, Error>::Ok(BlockTime {
|
2021-10-29 17:41:02 +11:00
|
|
|
height: *height,
|
|
|
|
timestamp: timestamp.into(),
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.transpose()?;
|
|
|
|
Ok(confirmation_time)
|
|
|
|
})
|
|
|
|
.collect::<Result<_, Error>>()?;
|
|
|
|
|
2021-11-02 17:22:24 +11:00
|
|
|
conftime_req.satisfy(conftimes)?
|
2021-10-29 17:41:02 +11:00
|
|
|
}
|
2021-11-02 17:22:24 +11:00
|
|
|
Request::Tx(tx_req) => {
|
|
|
|
let needs_full = tx_req.request().take(chunk_size);
|
2021-10-29 17:41:02 +11:00
|
|
|
tx_cache.save_txs(needs_full.clone())?;
|
|
|
|
let full_transactions = needs_full
|
|
|
|
.map(|txid| tx_cache.get(*txid).ok_or_else(electrum_goof))
|
|
|
|
.collect::<Result<Vec<_>, _>>()?;
|
|
|
|
let input_txs = full_transactions.iter().flat_map(|tx| {
|
|
|
|
tx.input
|
|
|
|
.iter()
|
|
|
|
.filter(|input| !input.previous_output.is_null())
|
|
|
|
.map(|input| &input.previous_output.txid)
|
|
|
|
});
|
|
|
|
tx_cache.save_txs(input_txs)?;
|
|
|
|
|
|
|
|
let full_details = full_transactions
|
|
|
|
.into_iter()
|
|
|
|
.map(|tx| {
|
2021-12-16 20:53:16 +05:30
|
|
|
let mut input_index = 0usize;
|
2021-10-29 17:41:02 +11:00
|
|
|
let prev_outputs = tx
|
|
|
|
.input
|
|
|
|
.iter()
|
|
|
|
.map(|input| {
|
|
|
|
if input.previous_output.is_null() {
|
|
|
|
return Ok(None);
|
|
|
|
}
|
|
|
|
let prev_tx = tx_cache
|
|
|
|
.get(input.previous_output.txid)
|
|
|
|
.ok_or_else(electrum_goof)?;
|
|
|
|
let txout = prev_tx
|
|
|
|
.output
|
|
|
|
.get(input.previous_output.vout as usize)
|
|
|
|
.ok_or_else(electrum_goof)?;
|
2021-12-16 20:53:16 +05:30
|
|
|
input_index += 1;
|
2021-10-29 17:41:02 +11:00
|
|
|
Ok(Some(txout.clone()))
|
|
|
|
})
|
|
|
|
.collect::<Result<Vec<_>, Error>>()?;
|
2021-11-02 16:34:50 +11:00
|
|
|
Ok((prev_outputs, tx))
|
2021-10-29 17:41:02 +11:00
|
|
|
})
|
|
|
|
.collect::<Result<Vec<_>, Error>>()?;
|
|
|
|
|
2021-11-02 17:22:24 +11:00
|
|
|
tx_req.satisfy(full_details)?
|
2021-10-29 17:41:02 +11:00
|
|
|
}
|
|
|
|
Request::Finish(batch_update) => break batch_update,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
database.commit_batch(batch_update)?;
|
|
|
|
Ok(())
|
2020-05-03 16:15:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-29 17:41:02 +11:00
|
|
|
struct TxCache<'a, 'b, D> {
|
|
|
|
db: &'a D,
|
|
|
|
client: &'b Client,
|
|
|
|
cache: HashMap<Txid, Transaction>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'b, D: Database> TxCache<'a, 'b, D> {
|
|
|
|
fn new(db: &'a D, client: &'b Client) -> Self {
|
|
|
|
TxCache {
|
|
|
|
db,
|
|
|
|
client,
|
|
|
|
cache: HashMap::default(),
|
|
|
|
}
|
2020-05-03 16:15:11 +02:00
|
|
|
}
|
2021-10-29 17:41:02 +11:00
|
|
|
fn save_txs<'c>(&mut self, txids: impl Iterator<Item = &'c Txid>) -> Result<(), Error> {
|
|
|
|
let mut need_fetch = vec![];
|
|
|
|
for txid in txids {
|
|
|
|
if self.cache.get(txid).is_some() {
|
|
|
|
continue;
|
|
|
|
} else if let Some(transaction) = self.db.get_raw_tx(txid)? {
|
|
|
|
self.cache.insert(*txid, transaction);
|
|
|
|
} else {
|
|
|
|
need_fetch.push(txid);
|
|
|
|
}
|
|
|
|
}
|
2020-05-03 16:15:11 +02:00
|
|
|
|
2021-10-29 17:41:02 +11:00
|
|
|
if !need_fetch.is_empty() {
|
|
|
|
let txs = self
|
|
|
|
.client
|
|
|
|
.batch_transaction_get(need_fetch.clone())
|
|
|
|
.map_err(Error::Electrum)?;
|
|
|
|
for (tx, _txid) in txs.into_iter().zip(need_fetch) {
|
|
|
|
debug_assert_eq!(*_txid, tx.txid());
|
|
|
|
self.cache.insert(tx.txid(), tx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
2020-05-07 15:14:05 +02:00
|
|
|
}
|
2020-05-03 16:15:11 +02:00
|
|
|
|
2021-10-29 17:41:02 +11:00
|
|
|
fn get(&self, txid: Txid) -> Option<Transaction> {
|
|
|
|
self.cache.get(&txid).map(Clone::clone)
|
2020-05-03 16:15:11 +02:00
|
|
|
}
|
|
|
|
}
|
2020-09-10 18:08:37 +02:00
|
|
|
|
|
|
|
/// Configuration for an [`ElectrumBlockchain`]
|
2021-03-25 16:28:38 +11:00
|
|
|
#[derive(Debug, serde::Deserialize, serde::Serialize, Clone, PartialEq)]
|
2020-09-10 18:08:37 +02:00
|
|
|
pub struct ElectrumBlockchainConfig {
|
2020-11-27 10:25:12 +01:00
|
|
|
/// URL of the Electrum server (such as ElectrumX, Esplora, BWT) may start with `ssl://` or `tcp://` and include a port
|
|
|
|
///
|
|
|
|
/// eg. `ssl://electrum.blockstream.info:60002`
|
2020-09-10 18:08:37 +02:00
|
|
|
pub url: String,
|
2020-11-27 10:25:12 +01:00
|
|
|
/// URL of the socks5 proxy server or a Tor service
|
2020-09-10 18:08:37 +02:00
|
|
|
pub socks5: Option<String>,
|
2020-12-02 16:54:49 -08:00
|
|
|
/// Request retry count
|
2020-11-24 12:16:49 +01:00
|
|
|
pub retry: u8,
|
2020-12-02 16:54:49 -08:00
|
|
|
/// Request timeout (seconds)
|
2021-01-11 11:37:34 +01:00
|
|
|
pub timeout: Option<u8>,
|
2021-07-15 10:55:49 -07:00
|
|
|
/// Stop searching addresses for transactions after finding an unused gap of this length
|
|
|
|
pub stop_gap: usize,
|
2020-09-10 18:08:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ConfigurableBlockchain for ElectrumBlockchain {
|
|
|
|
type Config = ElectrumBlockchainConfig;
|
|
|
|
|
|
|
|
fn from_config(config: &Self::Config) -> Result<Self, Error> {
|
2020-11-24 12:16:49 +01:00
|
|
|
let socks5 = config.socks5.as_ref().map(Socks5Config::new);
|
|
|
|
let electrum_config = ConfigBuilder::new()
|
|
|
|
.retry(config.retry)
|
|
|
|
.timeout(config.timeout)?
|
2021-01-11 11:37:34 +01:00
|
|
|
.socks5(socks5)?
|
2020-11-24 12:16:49 +01:00
|
|
|
.build();
|
|
|
|
|
2021-07-15 10:55:49 -07:00
|
|
|
Ok(ElectrumBlockchain {
|
|
|
|
client: Client::from_config(config.url.as_str(), electrum_config)?,
|
|
|
|
stop_gap: config.stop_gap,
|
|
|
|
})
|
2020-09-10 18:08:37 +02:00
|
|
|
}
|
|
|
|
}
|
2021-05-16 15:07:55 +10:00
|
|
|
|
2021-06-17 13:48:46 +02:00
|
|
|
#[cfg(test)]
|
2021-06-28 15:04:17 +02:00
|
|
|
#[cfg(feature = "test-electrum")]
|
2022-03-15 10:48:00 +01:00
|
|
|
mod test {
|
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
use crate::database::MemoryDatabase;
|
|
|
|
use crate::testutils::blockchain_tests::TestClient;
|
|
|
|
use crate::wallet::{AddressIndex, Wallet};
|
|
|
|
|
|
|
|
crate::bdk_blockchain_tests! {
|
|
|
|
fn test_instance(test_client: &TestClient) -> ElectrumBlockchain {
|
|
|
|
ElectrumBlockchain::from(Client::new(&test_client.electrsd.electrum_url).unwrap())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_factory() -> (TestClient, Arc<ElectrumBlockchain>) {
|
|
|
|
let test_client = TestClient::default();
|
|
|
|
|
|
|
|
let factory = Arc::new(ElectrumBlockchain::from(
|
|
|
|
Client::new(&test_client.electrsd.electrum_url).unwrap(),
|
|
|
|
));
|
|
|
|
|
|
|
|
(test_client, factory)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_electrum_blockchain_factory() {
|
|
|
|
let (_test_client, factory) = get_factory();
|
|
|
|
|
|
|
|
let a = factory.build("aaaaaa", None).unwrap();
|
|
|
|
let b = factory.build("bbbbbb", None).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
a.client.block_headers_subscribe().unwrap().height,
|
|
|
|
b.client.block_headers_subscribe().unwrap().height
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_electrum_blockchain_factory_sync_wallet() {
|
|
|
|
let (mut test_client, factory) = get_factory();
|
|
|
|
|
|
|
|
let db = MemoryDatabase::new();
|
|
|
|
let wallet = Wallet::new(
|
|
|
|
"wpkh(L5EZftvrYaSudiozVRzTqLcHLNDoVn7H5HSfM9BAN6tMJX8oTWz6)",
|
|
|
|
None,
|
|
|
|
bitcoin::Network::Regtest,
|
|
|
|
db,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let address = wallet.get_address(AddressIndex::New).unwrap();
|
|
|
|
|
|
|
|
let tx = testutils! {
|
|
|
|
@tx ( (@addr address.address) => 50_000 )
|
|
|
|
};
|
|
|
|
test_client.receive(tx);
|
|
|
|
|
|
|
|
factory
|
|
|
|
.sync_wallet(&wallet, None, Default::default())
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert_eq!(wallet.get_balance().unwrap(), 50_000);
|
2021-05-16 15:07:55 +10:00
|
|
|
}
|
|
|
|
}
|