Struct bdk_wallet::CreateParams

source ·
pub struct CreateParams { /* private fields */ }
Expand description

Implementations§

source§

impl CreateParams

source

pub fn new_single<D: IntoWalletDescriptor + Send + 'static>( descriptor: D ) -> Self

Construct parameters with provided descriptor.

Default values:

  • change_descriptor = None
  • network = [Network::Bitcoin]
  • genesis_hash = None
  • lookahead = [DEFAULT_LOOKAHEAD]

Use this method only when building a wallet with a single descriptor. See also Wallet::create_single.

source

pub fn new<D: IntoWalletDescriptor + Send + 'static>( descriptor: D, change_descriptor: D ) -> Self

Construct parameters with provided descriptor and change_descriptor.

Default values:

  • network = [Network::Bitcoin]
  • genesis_hash = None
  • lookahead = [DEFAULT_LOOKAHEAD]
source

pub fn keymap(self, keychain: KeychainKind, keymap: KeyMap) -> Self

Extend the given keychain’s keymap.

source

pub fn network(self, network: Network) -> Self

Set network.

source

pub fn genesis_hash(self, genesis_hash: BlockHash) -> Self

Use a custom genesis_hash.

source

pub fn lookahead(self, lookahead: u32) -> Self

Use custom lookahead value.

source

pub fn create_wallet<P>( self, persister: &mut P ) -> Result<PersistedWallet<P>, CreateWithPersistError<P::Error>>
where P: WalletPersister,

Create PersistedWallet with the given WalletPersister.

source

pub async fn create_wallet_async<P>( self, persister: &mut P ) -> Result<PersistedWallet<P>, CreateWithPersistError<P::Error>>

Create PersistedWallet with the given AsyncWalletPersister.

source

pub fn create_wallet_no_persist(self) -> Result<Wallet, DescriptorError>

Create Wallet without persistence.

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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, U> Into<U> for T
where 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 T
where 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 T
where 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 T
where V: MultiLane<T>,

§

fn vzip(self) -> V