Skip to content

Commit

Permalink
example(esplora): update esplora examples to use full_scan and sync r…
Browse files Browse the repository at this point in the history
…equests
  • Loading branch information
notmandatory committed Feb 1, 2024
1 parent 1e29de5 commit 0f00885
Show file tree
Hide file tree
Showing 6 changed files with 162 additions and 87 deletions.
2 changes: 1 addition & 1 deletion crates/bdk/src/wallet/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ impl<P> From<coin_selection::Error> for CreateTxError<P> {
impl<P: core::fmt::Display + core::fmt::Debug> std::error::Error for CreateTxError<P> {}

#[derive(Debug)]
/// Error returned by [`Wallet::build_fee_bump`]
/// Error returned by [`crate::Wallet::build_fee_bump`]
pub enum BuildFeeBumpError {
/// Happens when trying to spend an UTXO that is not in the internal database
UnknownUtxo(OutPoint),
Expand Down
28 changes: 23 additions & 5 deletions example-crates/example_esplora/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use std::{
sync::Mutex,
};

use bdk_chain::spk_client::{FullScanRequest, FullScanResult, SyncRequest, SyncResult};
use bdk_chain::{
bitcoin::{constants::genesis_block, Address, Network, OutPoint, ScriptBuf, Txid},
indexed_tx_graph::{self, IndexedTxGraph},
Expand Down Expand Up @@ -189,8 +190,17 @@ fn main() -> anyhow::Result<()> {
// is reached. It returns a `TxGraph` update (`graph_update`) and a structure that
// represents the last active spk derivation indices of keychains
// (`keychain_indices_update`).
let (graph_update, last_active_indices) = client
.full_scan(keychain_spks, *stop_gap, scan_options.parallel_requests)
let local_chain = chain.lock().expect("mutex must not be poisoned");
let request = FullScanRequest {
spks_by_keychain: keychain_spks,
local_chain: &local_chain,
};
let FullScanResult {
graph_update,
chain_update: _,
last_active_indices,
} = client
.full_scan(request, *stop_gap, scan_options.parallel_requests)
.context("scanning for transactions")?;

let mut graph = graph.lock().expect("mutex must not be poisoned");
Expand Down Expand Up @@ -306,9 +316,17 @@ fn main() -> anyhow::Result<()> {
}));
}
}

let graph_update =
client.sync(spks, txids, outpoints, scan_options.parallel_requests)?;
let local_chain = chain.lock().expect("mutex must not be poisoned");
let request = SyncRequest {
spks: spks.collect(),
txids: txids.collect(),
outpoints: outpoints.collect(),
local_chain: &local_chain,
};
let SyncResult {
graph_update,
chain_update: _,
} = client.sync(request, scan_options.parallel_requests)?;

graph.lock().unwrap().apply_update(graph_update)
}
Expand Down
2 changes: 2 additions & 0 deletions example-crates/wallet_esplora_async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ bdk_esplora = { path = "../../crates/esplora", features = ["async-https"] }
bdk_file_store = { path = "../../crates/file_store" }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
anyhow = "1"
env_logger = { version = "0.10", default-features = false, features = ["humantime"] }
log = "0.4.20"
109 changes: 68 additions & 41 deletions example-crates/wallet_esplora_async/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
use std::{io::Write, str::FromStr};
use env_logger::Env;
use std::env;
use std::str::FromStr;

use bdk::chain::spk_client::{FullScanResult, SyncResult};
use bdk::{
bitcoin::{Address, Network},
wallet::{AddressIndex, Update},
SignOptions, Wallet,
};
use bdk_esplora::{esplora_client, EsploraAsyncExt};
use bdk_file_store::Store;
use log::info;

const DB_MAGIC: &str = "bdk_wallet_esplora_async_example";
const SEND_AMOUNT: u64 = 5000;
Expand All @@ -15,7 +19,12 @@ const PARALLEL_REQUESTS: usize = 5;

#[tokio::main]
async fn main() -> Result<(), anyhow::Error> {
let db_path = std::env::temp_dir().join("bdk-esplora-async-example");
env_logger::Builder::from_env(Env::default().default_filter_or("info")).init();

let args: Vec<String> = env::args().collect();
let cmd = args.get(1);

let db_path = "bdk_wallet_esplora_async_example.dat";
let db = Store::<bdk::wallet::ChangeSet>::open_or_create_new(DB_MAGIC.as_bytes(), db_path)?;
let external_descriptor = "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/0/*)";
let internal_descriptor = "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/1/*)";
Expand All @@ -24,62 +33,80 @@ async fn main() -> Result<(), anyhow::Error> {
external_descriptor,
Some(internal_descriptor),
db,
Network::Testnet,
Network::Signet,
)?;

let address = wallet.try_get_address(AddressIndex::New)?;
println!("Generated Address: {}", address);
info!("Generated Address: {}", address);

let balance = wallet.get_balance();
println!("Wallet balance before syncing: {} sats", balance.total());

print!("Syncing...");
let client =
esplora_client::Builder::new("https://blockstream.info/testnet/api").build_async()?;

let prev_tip = wallet.latest_checkpoint();
let keychain_spks = wallet
.all_unbounded_spk_iters()
.into_iter()
.map(|(k, k_spks)| {
let mut once = Some(());
let mut stdout = std::io::stdout();
let k_spks = k_spks
.inspect(move |(spk_i, _)| match once.take() {
Some(_) => print!("\nScanning keychain [{:?}]", k),
None => print!(" {:<3}", spk_i),
})
.inspect(move |_| stdout.flush().expect("must flush"));
(k, k_spks)
})
.collect();
let (update_graph, last_active_indices) = client
.full_scan(keychain_spks, STOP_GAP, PARALLEL_REQUESTS)
.await?;
let missing_heights = update_graph.missing_heights(wallet.local_chain());
let chain_update = client.update_local_chain(prev_tip, missing_heights).await?;
let update = Update {
last_active_indices,
graph: update_graph,
chain: Some(chain_update),
};
info!("Wallet balance: {} sats", balance.total());

let client = esplora_client::Builder::new("http://signet.bitcoindevkit.net").build_async()?;
let (update, cmd) = match cmd.map(|c| c.as_str()) {
Some(cmd) if cmd == "fullscan" => {
info!("Start full scan...");
// 1. get data required to do a wallet full_scan
let request = wallet.full_scan_request();
// 2. full scan to discover wallet transactions and update blockchain
let FullScanResult {
graph_update,
chain_update,
last_active_indices,
} = client
.full_scan(request, STOP_GAP, PARALLEL_REQUESTS)
.await?;
// 3. create wallet update
Ok((
Update {
last_active_indices,
graph: graph_update,
chain: Some(chain_update),
},
cmd,
))
}
Some(cmd) if cmd == "sync" => {
info!("Start sync...");
// 1. get data required to do a wallet sync, if also syncing previously used addresses set unused_spks_only = false
let request = wallet.sync_request(true);
// 2. sync unused wallet spks (addresses), unconfirmed tx, utxos and update blockchain
let SyncResult {
graph_update,
chain_update,
} = client.sync(request, PARALLEL_REQUESTS).await?;
// 3. create wallet update
Ok((
Update {
graph: graph_update,
chain: Some(chain_update),
..Update::default()
},
cmd,
))
}
_ => Err(()),
}
.expect("Specify if you want to do a wallet 'fullscan' or a 'sync'.");

// 4. apply update to wallet
wallet.apply_update(update)?;
// 5. commit wallet update to database
wallet.commit()?;
println!();

let balance = wallet.get_balance();
println!("Wallet balance after syncing: {} sats", balance.total());
info!("Wallet balance after {}: {} sats", cmd, balance.total());

if balance.total() < SEND_AMOUNT {
println!(
info!(
"Please send at least {} sats to the receiving address",
SEND_AMOUNT
);
std::process::exit(0);
}

let faucet_address = Address::from_str("mkHS9ne12qx9pS9VojpwU5xtRd4T7X7ZUt")?
.require_network(Network::Testnet)?;
.require_network(Network::Signet)?;

let mut tx_builder = wallet.build_tx();
tx_builder
Expand All @@ -92,7 +119,7 @@ async fn main() -> Result<(), anyhow::Error> {

let tx = psbt.extract_tx();
client.broadcast(&tx).await?;
println!("Tx broadcasted! Txid: {}", tx.txid());
info!("Tx broadcasted! Txid: {}", tx.txid());

Ok(())
}
2 changes: 2 additions & 0 deletions example-crates/wallet_esplora_blocking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ bdk = { path = "../../crates/bdk" }
bdk_esplora = { path = "../../crates/esplora", features = ["blocking"] }
bdk_file_store = { path = "../../crates/file_store" }
anyhow = "1"
env_logger = { version = "0.10", default-features = false, features = ["humantime"] }
log = "0.4.20"
106 changes: 66 additions & 40 deletions example-crates/wallet_esplora_blocking/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
const DB_MAGIC: &str = "bdk_wallet_esplora_example";
const DB_MAGIC: &str = "bdk_wallet_esplora_blocking_example";
const SEND_AMOUNT: u64 = 1000;
const STOP_GAP: usize = 5;
const PARALLEL_REQUESTS: usize = 1;

use std::{io::Write, str::FromStr};
use env_logger::Env;
use log::info;
use std::env;
use std::str::FromStr;

use bdk::chain::spk_client::{FullScanResult, SyncResult};
use bdk::{
bitcoin::{Address, Network},
wallet::{AddressIndex, Update},
Expand All @@ -14,7 +18,12 @@ use bdk_esplora::{esplora_client, EsploraExt};
use bdk_file_store::Store;

fn main() -> Result<(), anyhow::Error> {
let db_path = std::env::temp_dir().join("bdk-esplora-example");
env_logger::Builder::from_env(Env::default().default_filter_or("info")).init();

let args: Vec<String> = env::args().collect();
let cmd = args.get(1);

let db_path = "bdk_wallet_esplora_blocking_example.dat";
let db = Store::<bdk::wallet::ChangeSet>::open_or_create_new(DB_MAGIC.as_bytes(), db_path)?;
let external_descriptor = "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/0/*)";
let internal_descriptor = "wpkh(tprv8ZgxMBicQKsPdy6LMhUtFHAgpocR8GC6QmwMSFpZs7h6Eziw3SpThFfczTDh5rW2krkqffa11UpX3XkeTTB2FvzZKWXqPY54Y6Rq4AQ5R8L/84'/1'/0'/1/*)";
Expand All @@ -23,63 +32,80 @@ fn main() -> Result<(), anyhow::Error> {
external_descriptor,
Some(internal_descriptor),
db,
Network::Testnet,
Network::Signet,
)?;

let address = wallet.try_get_address(AddressIndex::New)?;
println!("Generated Address: {}", address);
info!("Generated Address: {}", address);

let balance = wallet.get_balance();
println!("Wallet balance before syncing: {} sats", balance.total());
info!("Wallet balance: {} sats", balance.total());

print!("Syncing...");
let client =
esplora_client::Builder::new("https://blockstream.info/testnet/api").build_blocking()?;

let prev_tip = wallet.latest_checkpoint();
let keychain_spks = wallet
.all_unbounded_spk_iters()
.into_iter()
.map(|(k, k_spks)| {
let mut once = Some(());
let mut stdout = std::io::stdout();
let k_spks = k_spks
.inspect(move |(spk_i, _)| match once.take() {
Some(_) => print!("\nScanning keychain [{:?}]", k),
None => print!(" {:<3}", spk_i),
})
.inspect(move |_| stdout.flush().expect("must flush"));
(k, k_spks)
})
.collect();

let (update_graph, last_active_indices) =
client.full_scan(keychain_spks, STOP_GAP, PARALLEL_REQUESTS)?;
let missing_heights = update_graph.missing_heights(wallet.local_chain());
let chain_update = client.update_local_chain(prev_tip, missing_heights)?;
let update = Update {
last_active_indices,
graph: update_graph,
chain: Some(chain_update),
};
esplora_client::Builder::new("http://signet.bitcoindevkit.net").build_blocking()?;

let (update, cmd) = match cmd.map(|c| c.as_str()) {
Some(cmd) if cmd == "fullscan" => {
info!("Start full scan...");
// 1. get data required to do a wallet full_scan
let request = wallet.full_scan_request();
// 2. full scan to discover wallet transactions
let FullScanResult {
graph_update,
chain_update,
last_active_indices,
} = client.full_scan(request, STOP_GAP, PARALLEL_REQUESTS)?;
// 3. create wallet update
Ok((
Update {
last_active_indices,
graph: graph_update,
chain: Some(chain_update),
},
cmd,
))
}
Some(cmd) if cmd == "sync" => {
info!("Start sync...");
// 1. get data required to do a wallet sync, if also syncing previously used addresses set unused_spks_only = false
let request = wallet.sync_request(true);
// 2. sync unused wallet spks (addresses), unconfirmed tx, and utxos
let SyncResult {
graph_update,
chain_update,
} = client.sync(request, PARALLEL_REQUESTS)?;
// 3. create wallet update
Ok((
Update {
graph: graph_update,
chain: Some(chain_update),
..Update::default()
},
cmd,
))
}
_ => Err(()),
}
.expect("Specify if you want to do a wallet 'fullscan' or a 'sync'.");

// 4. apply update to wallet
wallet.apply_update(update)?;
// 5. commit wallet update to database
wallet.commit()?;
println!();

let balance = wallet.get_balance();
println!("Wallet balance after syncing: {} sats", balance.total());
info!("Wallet balance after {}: {} sats", cmd, balance.total());

if balance.total() < SEND_AMOUNT {
println!(
info!(
"Please send at least {} sats to the receiving address",
SEND_AMOUNT
);
std::process::exit(0);
}

let faucet_address = Address::from_str("mkHS9ne12qx9pS9VojpwU5xtRd4T7X7ZUt")?
.require_network(Network::Testnet)?;
.require_network(Network::Signet)?;

let mut tx_builder = wallet.build_tx();
tx_builder
Expand All @@ -92,7 +118,7 @@ fn main() -> Result<(), anyhow::Error> {

let tx = psbt.extract_tx();
client.broadcast(&tx)?;
println!("Tx broadcasted! Txid: {}", tx.txid());
info!("Tx broadcasted! Txid: {}", tx.txid());

Ok(())
}

0 comments on commit 0f00885

Please sign in to comment.