bdkffi/wallet.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
use crate::bitcoin::{Amount, FeeRate, OutPoint, Psbt, Script, Transaction, TxOut, Txid};
use crate::descriptor::Descriptor;
use crate::error::{
CalculateFeeError, CannotConnectError, CreateWithPersistError, DescriptorError,
LoadWithPersistError, PersistenceError, SignerError, TxidParseError,
};
use crate::store::{PersistenceType, Persister};
use crate::types::{
AddressInfo, Balance, BlockId, CanonicalTx, ChangeSet, EvictedTx, FullScanRequestBuilder,
KeychainAndIndex, LocalOutput, Policy, SentAndReceivedValues, SignOptions, SyncRequestBuilder,
UnconfirmedTx, Update, WalletEvent,
};
use bdk_wallet::bitcoin::Network;
#[allow(deprecated)]
use bdk_wallet::signer::SignOptions as BdkSignOptions;
use bdk_wallet::{KeychainKind, PersistedWallet, Wallet as BdkWallet};
use std::ops::DerefMut;
use std::sync::{Arc, Mutex, MutexGuard};
/// A Bitcoin wallet.
///
/// The Wallet acts as a way of coherently interfacing with output descriptors and related transactions. Its main components are:
/// 1. output descriptors from which it can derive addresses.
/// 2. signers that can contribute signatures to addresses instantiated from the descriptors.
///
/// The user is responsible for loading and writing wallet changes which are represented as
/// ChangeSets (see take_staged). Also see individual functions and example for instructions on when
/// Wallet state needs to be persisted.
///
/// The Wallet descriptor (external) and change descriptor (internal) must not derive the same
/// script pubkeys. See KeychainTxOutIndex::insert_descriptor() for more details.
#[derive(uniffi::Object)]
pub struct Wallet {
inner_mutex: Mutex<PersistedWallet<PersistenceType>>,
}
#[uniffi::export]
impl Wallet {
/// Build a new Wallet.
///
/// If you have previously created a wallet, use load instead.
#[uniffi::constructor(default(lookahead = 25))]
pub fn new(
descriptor: Arc<Descriptor>,
change_descriptor: Arc<Descriptor>,
network: Network,
persister: Arc<Persister>,
lookahead: u32,
) -> Result<Self, CreateWithPersistError> {
let descriptor = descriptor.to_string_with_secret();
let change_descriptor = change_descriptor.to_string_with_secret();
let mut persist_lock = persister.inner.lock().unwrap();
let deref = persist_lock.deref_mut();
let wallet: PersistedWallet<PersistenceType> =
BdkWallet::create(descriptor, change_descriptor)
.network(network)
.lookahead(lookahead)
.create_wallet(deref)
.map_err(CreateWithPersistError::from)?;
Ok(Wallet {
inner_mutex: Mutex::new(wallet),
})
}
/// Build a new single descriptor `Wallet`.
///
/// If you have previously created a wallet, use `Wallet::load` instead.
///
/// # Note
///
/// Only use this method when creating a wallet designed to be used with a single
/// descriptor and keychain. Otherwise the recommended way to construct a new wallet is
/// by using `Wallet::new`. It's worth noting that not all features are available
/// with single descriptor wallets, for example setting a `change_policy` on `TxBuilder`
/// and related methods such as `do_not_spend_change`. This is because all payments are
/// received on the external keychain (including change), and without a change keychain
/// BDK lacks enough information to distinguish between change and outside payments.
///
/// Additionally because this wallet has no internal (change) keychain, all methods that
/// require a `KeychainKind` as input, e.g. `reveal_next_address` should only be called
/// using the `External` variant. In most cases passing `Internal` is treated as the
/// equivalent of `External` but this behavior must not be relied on.
#[uniffi::constructor(default(lookahead = 25))]
pub fn create_single(
descriptor: Arc<Descriptor>,
network: Network,
persister: Arc<Persister>,
lookahead: u32,
) -> Result<Self, CreateWithPersistError> {
let descriptor = descriptor.to_string_with_secret();
let mut persist_lock = persister.inner.lock().unwrap();
let deref = persist_lock.deref_mut();
let wallet: PersistedWallet<PersistenceType> = BdkWallet::create_single(descriptor)
.network(network)
.lookahead(lookahead)
.create_wallet(deref)
.map_err(CreateWithPersistError::from)?;
Ok(Wallet {
inner_mutex: Mutex::new(wallet),
})
}
/// Build a new `Wallet` from a two-path descriptor.
///
/// This function parses a multipath descriptor with exactly 2 paths and creates a wallet using the existing receive and change wallet creation logic.
///
/// Multipath descriptors follow [BIP-389](https://github.com/bitcoin/bips/blob/master/bip-0389.mediawiki) and allow defining both receive and change derivation paths in a single descriptor using the <0;1> syntax.
///
/// If you have previously created a wallet, use load instead.
///
/// Returns an error if the descriptor is invalid or not a 2-path multipath descriptor.
#[uniffi::constructor(default(lookahead = 25))]
pub fn create_from_two_path_descriptor(
two_path_descriptor: Arc<Descriptor>,
network: Network,
persister: Arc<Persister>,
lookahead: u32,
) -> Result<Self, CreateWithPersistError> {
let descriptor = two_path_descriptor.to_string_with_secret();
let mut persist_lock = persister.inner.lock().unwrap();
let deref = persist_lock.deref_mut();
let wallet: PersistedWallet<PersistenceType> =
BdkWallet::create_from_two_path_descriptor(descriptor)
.network(network)
.lookahead(lookahead)
.create_wallet(deref)
.map_err(CreateWithPersistError::from)?;
Ok(Wallet {
inner_mutex: Mutex::new(wallet),
})
}
/// Build Wallet by loading from persistence.
///
/// Note that the descriptor secret keys are not persisted to the db.
#[uniffi::constructor(default(lookahead = 25))]
pub fn load(
descriptor: Arc<Descriptor>,
change_descriptor: Arc<Descriptor>,
persister: Arc<Persister>,
lookahead: u32,
) -> Result<Wallet, LoadWithPersistError> {
let descriptor = descriptor.to_string_with_secret();
let change_descriptor = change_descriptor.to_string_with_secret();
let mut persist_lock = persister.inner.lock().unwrap();
let deref = persist_lock.deref_mut();
let wallet: PersistedWallet<PersistenceType> = BdkWallet::load()
.descriptor(KeychainKind::External, Some(descriptor))
.descriptor(KeychainKind::Internal, Some(change_descriptor))
.lookahead(lookahead)
.extract_keys()
.load_wallet(deref)
.map_err(LoadWithPersistError::from)?
.ok_or(LoadWithPersistError::CouldNotLoad)?;
Ok(Wallet {
inner_mutex: Mutex::new(wallet),
})
}
/// Build a single-descriptor Wallet by loading from persistence.
///
/// Note that the descriptor secret keys are not persisted to the db.
#[uniffi::constructor(default(lookahead = 25))]
pub fn load_single(
descriptor: Arc<Descriptor>,
persister: Arc<Persister>,
lookahead: u32,
) -> Result<Wallet, LoadWithPersistError> {
let descriptor = descriptor.to_string_with_secret();
let mut persist_lock = persister.inner.lock().unwrap();
let deref = persist_lock.deref_mut();
let wallet: PersistedWallet<PersistenceType> = BdkWallet::load()
.descriptor(KeychainKind::External, Some(descriptor))
.lookahead(lookahead)
.extract_keys()
.load_wallet(deref)
.map_err(LoadWithPersistError::from)?
.ok_or(LoadWithPersistError::CouldNotLoad)?;
Ok(Wallet {
inner_mutex: Mutex::new(wallet),
})
}
/// Finds how the wallet derived the script pubkey `spk`.
///
/// Will only return `Some(_)` if the wallet has given out the spk.
pub fn derivation_of_spk(&self, spk: Arc<Script>) -> Option<KeychainAndIndex> {
self.get_wallet()
.derivation_of_spk(spk.0.clone())
.map(|(k, i)| KeychainAndIndex {
keychain: k,
index: i,
})
}
/// Informs the wallet that you no longer intend to broadcast a tx that was built from it.
///
/// This frees up the change address used when creating the tx for use in future transactions.
pub fn cancel_tx(&self, tx: &Transaction) {
self.get_wallet().cancel_tx(&tx.into())
}
/// Returns the utxo owned by this wallet corresponding to `outpoint` if it exists in the
/// wallet's database.
pub fn get_utxo(&self, op: OutPoint) -> Option<LocalOutput> {
self.get_wallet()
.get_utxo(op.into())
.map(|local_output| local_output.into())
}
/// Attempt to reveal the next address of the given `keychain`.
///
/// This will increment the keychain's derivation index. If the keychain's descriptor doesn't
/// contain a wildcard or every address is already revealed up to the maximum derivation
/// index defined in [BIP32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki),
/// then the last revealed address will be returned.
pub fn reveal_next_address(&self, keychain: KeychainKind) -> AddressInfo {
self.get_wallet().reveal_next_address(keychain).into()
}
/// Peek an address of the given `keychain` at `index` without revealing it.
///
/// For non-wildcard descriptors this returns the same address at every provided index.
///
/// # Panics
///
/// This panics when the caller requests for an address of derivation index greater than the
/// [BIP32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki) max index.
pub fn peek_address(&self, keychain: KeychainKind, index: u32) -> AddressInfo {
self.get_wallet().peek_address(keychain, index).into()
}
/// The index of the next address that you would get if you were to ask the wallet for a new
/// address.
pub fn next_derivation_index(&self, keychain: KeychainKind) -> u32 {
self.get_wallet().next_derivation_index(keychain)
}
/// Get the next unused address for the given `keychain`, i.e. the address with the lowest
/// derivation index that hasn't been used in a transaction.
///
/// This will attempt to reveal a new address if all previously revealed addresses have
/// been used, in which case the returned address will be the same as calling [`Wallet::reveal_next_address`].
///
/// **WARNING**: To avoid address reuse you must persist the changes resulting from one or more
/// calls to this method before closing the wallet. See [`Wallet::reveal_next_address`].
pub fn next_unused_address(&self, keychain: KeychainKind) -> AddressInfo {
self.get_wallet().next_unused_address(keychain).into()
}
/// Marks an address used of the given `keychain` at `index`.
///
/// Returns whether the given index was present and then removed from the unused set.
pub fn mark_used(&self, keychain: KeychainKind, index: u32) -> bool {
self.get_wallet().mark_used(keychain, index)
}
/// Undoes the effect of [`mark_used`] and returns whether the `index` was inserted
/// back into the unused set.
///
/// Since this is only a superficial marker, it will have no effect if the address at the given
/// `index` was actually used, i.e. the wallet has previously indexed a tx output for the
/// derived spk.
///
/// [`mark_used`]: Self::mark_used
pub fn unmark_used(&self, keychain: KeychainKind, index: u32) -> bool {
self.get_wallet().unmark_used(keychain, index)
}
/// Reveal addresses up to and including the target `index` and return an iterator
/// of newly revealed addresses.
///
/// If the target `index` is unreachable, we make a best effort to reveal up to the last
/// possible index. If all addresses up to the given `index` are already revealed, then
/// no new addresses are returned.
///
/// **WARNING**: To avoid address reuse you must persist the changes resulting from one or more
/// calls to this method before closing the wallet. See [`Wallet::reveal_next_address`].
pub fn reveal_addresses_to(&self, keychain: KeychainKind, index: u32) -> Vec<AddressInfo> {
self.get_wallet()
.reveal_addresses_to(keychain, index)
.map(|address_info| address_info.into())
.collect()
}
/// List addresses that are revealed but unused.
///
/// Note if the returned iterator is empty you can reveal more addresses
/// by using [`reveal_next_address`](Self::reveal_next_address) or
/// [`reveal_addresses_to`](Self::reveal_addresses_to).
pub fn list_unused_addresses(&self, keychain: KeychainKind) -> Vec<AddressInfo> {
self.get_wallet()
.list_unused_addresses(keychain)
.map(|address_info| address_info.into())
.collect()
}
/// Applies an update to the wallet and stages the changes (but does not persist them).
///
/// Usually you create an `update` by interacting with some blockchain data source and inserting
/// transactions related to your wallet into it.
///
/// After applying updates you should persist the staged wallet changes. For an example of how
/// to persist staged wallet changes see [`Wallet::reveal_next_address`].
pub fn apply_update(&self, update: Arc<Update>) -> Result<(), CannotConnectError> {
self.get_wallet()
.apply_update(update.0.clone())
.map_err(CannotConnectError::from)
}
/// Applies an update to the wallet, stages the changes, and returns events.
///
/// Usually you create an `update` by interacting with some blockchain data source and inserting
/// transactions related to your wallet into it. Staged changes are NOT persisted.
///
/// After applying updates you should process the events in your app before persisting the
/// staged wallet changes. For an example of how to persist staged wallet changes see
/// [`Wallet::reveal_next_address`].
pub fn apply_update_events(
&self,
update: Arc<Update>,
) -> Result<Vec<WalletEvent>, CannotConnectError> {
match self.get_wallet().apply_update_events(update.0.clone()) {
Ok(events) => Ok(events.into_iter().map(|e| e.into()).collect()),
Err(e) => Err(CannotConnectError::from(e)),
}
}
/// Apply relevant unconfirmed transactions to the wallet.
/// Transactions that are not relevant are filtered out.
pub fn apply_unconfirmed_txs(&self, unconfirmed_txs: Vec<UnconfirmedTx>) {
self.get_wallet().apply_unconfirmed_txs(
unconfirmed_txs
.into_iter()
.map(|utx| (Arc::new(utx.tx.as_ref().into()), utx.last_seen)),
)
}
/// Apply transactions that have been evicted from the mempool.
/// Transactions may be evicted for paying too-low fee, or for being malformed.
/// Irrelevant transactions are ignored.
///
/// For more information: https://docs.rs/bdk_wallet/latest/bdk_wallet/struct.Wallet.html#method.apply_evicted_txs
pub fn apply_evicted_txs(&self, evicted_txs: Vec<EvictedTx>) {
self.get_wallet().apply_evicted_txs(
evicted_txs
.into_iter()
.map(|etx| (etx.txid.0, etx.evicted_at)),
);
}
/// The derivation index of this wallet. It will return `None` if it has not derived any addresses.
/// Otherwise, it will return the index of the highest address it has derived.
pub fn derivation_index(&self, keychain: KeychainKind) -> Option<u32> {
self.get_wallet().derivation_index(keychain)
}
/// Return the checksum of the public descriptor associated to `keychain`.
///
/// Internally calls [`Self::public_descriptor`] to fetch the right descriptor.
pub fn descriptor_checksum(&self, keychain: KeychainKind) -> String {
self.get_wallet().descriptor_checksum(keychain)
}
/// Return the spending policies for the wallet’s descriptor.
pub fn policies(&self, keychain: KeychainKind) -> Result<Option<Arc<Policy>>, DescriptorError> {
self.get_wallet()
.policies(keychain)
.map_err(DescriptorError::from)
.map(|e| e.map(|p| Arc::new(p.into())))
}
/// Get the Bitcoin network the wallet is using.
pub fn network(&self) -> Network {
self.get_wallet().network()
}
/// Return the balance, separated into available, trusted-pending, untrusted-pending and
/// immature values.
pub fn balance(&self) -> Balance {
let bdk_balance = self.get_wallet().balance();
Balance::from(bdk_balance)
}
/// Return whether or not a `script` is part of this wallet (either internal or external).
pub fn is_mine(&self, script: Arc<Script>) -> bool {
self.get_wallet().is_mine(script.0.clone())
}
/// Sign a transaction with all the wallet's signers, in the order specified by every signer's
/// [`SignerOrdering`]. This function returns the `Result` type with an encapsulated `bool` that
/// has the value true if the PSBT was finalized, or false otherwise.
///
/// The [`SignOptions`] can be used to tweak the behavior of the software signers, and the way
/// the transaction is finalized at the end. Note that it can't be guaranteed that *every*
/// signers will follow the options, but the "software signers" (WIF keys and `xprv`) defined
/// in this library will.
#[uniffi::method(default(sign_options = None))]
#[allow(deprecated)]
pub fn sign(
&self,
psbt: Arc<Psbt>,
sign_options: Option<SignOptions>,
) -> Result<bool, SignerError> {
let mut psbt = psbt.0.lock().unwrap();
let bdk_sign_options: BdkSignOptions = match sign_options {
Some(sign_options) => BdkSignOptions::from(sign_options),
None => BdkSignOptions::default(),
};
self.get_wallet()
.sign(&mut psbt, bdk_sign_options)
.map_err(SignerError::from)
}
/// Finalize a PSBT, i.e., for each input determine if sufficient data is available to pass
/// validation and construct the respective `scriptSig` or `scriptWitness`. Please refer to
/// [BIP174](https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki#Input_Finalizer),
/// and [BIP371](https://github.com/bitcoin/bips/blob/master/bip-0371.mediawiki)
/// for further information.
///
/// Returns `true` if the PSBT could be finalized, and `false` otherwise.
///
/// The [`SignOptions`] can be used to tweak the behavior of the finalizer.
#[uniffi::method(default(sign_options = None))]
#[allow(deprecated)]
pub fn finalize_psbt(
&self,
psbt: Arc<Psbt>,
sign_options: Option<SignOptions>,
) -> Result<bool, SignerError> {
let mut psbt = psbt.0.lock().unwrap();
let bdk_sign_options: BdkSignOptions = match sign_options {
Some(sign_options) => BdkSignOptions::from(sign_options),
None => BdkSignOptions::default(),
};
self.get_wallet()
.finalize_psbt(&mut psbt, bdk_sign_options)
.map_err(SignerError::from)
}
/// Compute the `tx`'s sent and received [`Amount`]s.
///
/// This method returns a tuple `(sent, received)`. Sent is the sum of the txin amounts
/// that spend from previous txouts tracked by this wallet. Received is the summation
/// of this tx's outputs that send to script pubkeys tracked by this wallet.
pub fn sent_and_received(&self, tx: &Transaction) -> SentAndReceivedValues {
let (sent, received) = self.get_wallet().sent_and_received(&tx.into());
SentAndReceivedValues {
sent: Arc::new(sent.into()),
received: Arc::new(received.into()),
}
}
/// Iterate over the transactions in the wallet.
pub fn transactions(&self) -> Vec<CanonicalTx> {
self.get_wallet()
.transactions_sort_by(|tx1, tx2| tx2.chain_position.cmp(&tx1.chain_position))
.into_iter()
.map(|tx| tx.into())
.collect()
}
/// Get a single transaction from the wallet as a [`WalletTx`] (if the transaction exists).
///
/// `WalletTx` contains the full transaction alongside meta-data such as:
/// * Blocks that the transaction is [`Anchor`]ed in. These may or may not be blocks that exist
/// in the best chain.
/// * The [`ChainPosition`] of the transaction in the best chain - whether the transaction is
/// confirmed or unconfirmed. If the transaction is confirmed, the anchor which proves the
/// confirmation is provided. If the transaction is unconfirmed, the unix timestamp of when
/// the transaction was last seen in the mempool is provided.
pub fn get_tx(&self, txid: Arc<Txid>) -> Result<Option<CanonicalTx>, TxidParseError> {
Ok(self.get_wallet().get_tx(txid.0).map(|tx| tx.into()))
}
/// Inserts a [`TxOut`] at [`OutPoint`] into the wallet's transaction graph.
///
/// This is used for providing a previous output's value so that we can use [`calculate_fee`]
/// or [`calculate_fee_rate`] on a given transaction. Outputs inserted with this method will
/// not be returned in [`list_unspent`] or [`list_output`].
///
/// **WARNINGS:** This should only be used to add `TxOut`s that the wallet does not own. Only
/// insert `TxOut`s that you trust the values for!
///
/// You must persist the changes resulting from one or more calls to this method if you need
/// the inserted `TxOut` data to be reloaded after closing the wallet.
/// See [`Wallet::reveal_next_address`].
///
/// [`calculate_fee`]: Self::calculate_fee
/// [`calculate_fee_rate`]: Self::calculate_fee_rate
/// [`list_unspent`]: Self::list_unspent
/// [`list_output`]: Self::list_output
pub fn insert_txout(&self, outpoint: OutPoint, txout: TxOut) {
self.get_wallet()
.insert_txout(outpoint.into(), txout.into());
}
/// Calculates the fee of a given transaction. Returns [`Amount::ZERO`] if `tx` is a coinbase transaction.
///
/// To calculate the fee for a [`Transaction`] with inputs not owned by this wallet you must
/// manually insert the TxOut(s) into the tx graph using the [`insert_txout`] function.
///
/// Note `tx` does not have to be in the graph for this to work.
pub fn calculate_fee(&self, tx: &Transaction) -> Result<Arc<Amount>, CalculateFeeError> {
self.get_wallet()
.calculate_fee(&tx.into())
.map(Amount::from)
.map(Arc::new)
.map_err(|e| e.into())
}
/// Calculate the [`FeeRate`] for a given transaction.
///
/// To calculate the fee rate for a [`Transaction`] with inputs not owned by this wallet you must
/// manually insert the TxOut(s) into the tx graph using the [`insert_txout`] function.
///
/// Note `tx` does not have to be in the graph for this to work.
pub fn calculate_fee_rate(&self, tx: &Transaction) -> Result<Arc<FeeRate>, CalculateFeeError> {
self.get_wallet()
.calculate_fee_rate(&tx.into())
.map(|bdk_fee_rate| Arc::new(FeeRate(bdk_fee_rate)))
.map_err(|e| e.into())
}
/// Return the list of unspent outputs of this wallet.
pub fn list_unspent(&self) -> Vec<LocalOutput> {
self.get_wallet().list_unspent().map(|o| o.into()).collect()
}
/// List all relevant outputs (includes both spent and unspent, confirmed and unconfirmed).
///
/// To list only unspent outputs (UTXOs), use [`Wallet::list_unspent`] instead.
pub fn list_output(&self) -> Vec<LocalOutput> {
self.get_wallet().list_output().map(|o| o.into()).collect()
}
/// Create a [`FullScanRequest] for this wallet.
///
/// This is the first step when performing a spk-based wallet full scan, the returned
/// [`FullScanRequest] collects iterators for the wallet's keychain script pub keys needed to
/// start a blockchain full scan with a spk based blockchain client.
///
/// This operation is generally only used when importing or restoring a previously used wallet
/// in which the list of used scripts is not known.
pub fn start_full_scan(&self) -> Arc<FullScanRequestBuilder> {
let builder = self.get_wallet().start_full_scan();
Arc::new(FullScanRequestBuilder(Mutex::new(Some(builder))))
}
/// Create a partial [`SyncRequest`] for this wallet for all revealed spks.
///
/// This is the first step when performing a spk-based wallet partial sync, the returned
/// [`SyncRequest`] collects all revealed script pubkeys from the wallet keychain needed to
/// start a blockchain sync with a spk based blockchain client.
pub fn start_sync_with_revealed_spks(&self) -> Arc<SyncRequestBuilder> {
let builder = self.get_wallet().start_sync_with_revealed_spks();
Arc::new(SyncRequestBuilder(Mutex::new(Some(builder))))
}
/// Persist staged changes of wallet into persister.
///
/// Returns whether any new changes were persisted.
///
/// If the persister errors, the staged changes will not be cleared.
pub fn persist(&self, persister: Arc<Persister>) -> Result<bool, PersistenceError> {
let mut persist_lock = persister.inner.lock().unwrap();
let deref = persist_lock.deref_mut();
self.get_wallet()
.persist(deref)
.map_err(|e| PersistenceError::Reason {
error_message: e.to_string(),
})
}
/// Get a reference of the staged [`ChangeSet`] that is yet to be committed (if any).
pub fn staged(&self) -> Option<Arc<ChangeSet>> {
self.get_wallet()
.staged()
.map(|changeset| Arc::new(changeset.clone().into()))
}
/// Take the staged [`ChangeSet`] to be persisted now (if any).
pub fn take_staged(&self) -> Option<Arc<ChangeSet>> {
self.get_wallet()
.take_staged()
.map(|changeset| Arc::new(changeset.into()))
}
/// Returns the latest checkpoint.
pub fn latest_checkpoint(&self) -> BlockId {
self.get_wallet().latest_checkpoint().block_id().into()
}
/// Get the [`TxDetails`] of a wallet transaction.
pub fn tx_details(&self, txid: Arc<Txid>) -> Option<crate::types::TxDetails> {
self.get_wallet()
.tx_details(txid.0)
.map(|details| details.into())
}
/// Returns the descriptor used to create addresses for a particular `keychain`.
///
/// It's the "public" version of the wallet's descriptor, meaning a new descriptor that has
/// the same structure but with the all secret keys replaced by their corresponding public key.
/// This can be used to build a watch-only version of a wallet.
pub fn public_descriptor(&self, keychain: KeychainKind) -> String {
self.get_wallet().public_descriptor(keychain).to_string()
}
}
impl Wallet {
pub(crate) fn get_wallet(&self) -> MutexGuard<'_, PersistedWallet<PersistenceType>> {
self.inner_mutex.lock().expect("wallet")
}
}