This is a repo for building out bdk_core before it can be integrated into bdk.
The bdk_core
project has three main components in order of importance:
bdk_chain
The goal of this component is give wallets the mechanisms needed to:
Our design goals for these mechanisms are:
bdk_chain
cares about where you get data from or whether
you do it synchronously or asynchronously. If you know a fact about the blockchain you can just
tell bdk_chain
's APIs about it and that information will be integrated if it can be done
consistently.bdk_chain
does not care where you cache on-chain data, what you
cache or how you fetch it.TODO:
This component is about properly using miniscript's potential to know exactly which outputs you can spend and the most efficient way to spend them before trying to spend them. This allows you to know precisely how much weight spending an output will add for coin selection. This is an important feature in a taproot world since different spending paths can have vastly different weight.
The PR to miniscript has already been made: https://github.com/rust-bitcoin/rust-miniscript/pull/481
With the planning module, we'll be able to re-engineer coin selection and transaction building as well.
We've designed and implemented a robust coin selection API which allows users to choose what metric they want to optimise for during a branch and bound search.
Coin selection PR: https://github.com/LLFourn/bdkcorestaging/pull/46
Transaction building issue: https://github.com/LLFourn/bdkcorestaging/issues/30
The release dates for the first release we will try to make for the first releases are:
bdk_chain v0.1.0
-- working with esplora/electrum databdk v1.0.0-alpha.0
bdk_chain v.2.0
-- working with blocks form CBF and bitcoin RPCbdk v1.0.0-alpha.1
From there we will continue to develop bdk_chain
and the other components and as they are
integrated into bdk
we will continue to make new alpha/beta releases of bdk
until we have
something suitable for a release candidate. Before making a release candidate we'll need the
planning module to be merged into miniscript and released.
We have examples in their own crates like bdk_esplora_example
and bdk_electrum_example
with more coming soon.
To use them move into the directory and try running some commands. First you'll need to set some descriptors.
export DESCRIPTOR="tr([73c5da0a/86'/0'/0']xprv9xgqHN7yz9MwCkxsBPN5qetuNdQSUttZNKw1dcYTV4mkaAFiBVGQziHs3NRSWMkCzvgjEe3n9xV8oYywvM8at9yRqyaZVz6TYYhX98VjsUk/0/*)" CHANGE_DESCRIPTOR="tr([73c5da0a/86'/0'/0']xprv9xgqHN7yz9MwCkxsBPN5qetuNdQSUttZNKw1dcYTV4mkaAFiBVGQziHs3NRSWMkCzvgjEe3n9xV8oYywvM8at9yRqyaZVz6TYYhX98VjsUk/1/*)"
sh
cargo run -- scan # for electrum and esplora
cargo run -- balance
cargo run -- address list
cargo run -- address next
cargo run -- send 10000 <the new address>
export DESCRIPTOR="tr(xpub6BgBgsespWvERF3LHQu6CnqdvfEvtMcQjYrcRzx53QJjSxarj2afYWcLteoGVky7D3UKDP9QyrLprQ3VCECoY49yfdDEHGCtMMj92pReUsQ/0/*,pk(xprv9s21ZrQH143K3ngkqk9y72BYSJTZ1ngfTFGFtxCwfP9pKqcMzn6aCP3mZoY8qMEqUjkxC2BkDUVLw77qbyGt66BbE7g3nt8JAGGkcTe4kWZ/0/*))"