You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge bitcoindevkit/bdk#1882: doc: remove 1.0 roadmap stuff and fix broken links from README
609f12c doc: remove 1.0 roadmap stuff and fix broken links (Luis Schwab)
Pull request description:
<!-- You can erase any parts of this template not applicable to your Pull Request. -->
### Description
- Removed mentions of a future 1.0 release
- Fixed broken links to example crates
### Checklists
#### All Submissions:
* [X] I've signed all my commits
* [X] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md)
* [X] I ran `cargo fmt` and `cargo clippy` before committing
ACKs for top commit:
thunderbiscuit:
ACK 609f12c. 👍
LagginTimes:
ACK 609f12c
ValuedMammal:
ACK 609f12c
Tree-SHA512: d58ac289a8b3f2637115a7f31cb3f8f8bf902a98260f763e534e5feeab9421e5410b5c55b1d76166145f88bc4e521ab574b471dbe72ac2ac71fbd4860ef15a77
Copy file name to clipboardExpand all lines: README.md
+3-8Lines changed: 3 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -31,10 +31,6 @@
31
31
The `bdk` libraries aims to provide well engineered and reviewed components for Bitcoin based applications.
32
32
It is built upon the excellent [`rust-bitcoin`] and [`rust-miniscript`] crates.
33
33
34
-
> ⚠ The Bitcoin Dev Kit developers are in the process of releasing a `v1.0` which is a fundamental re-write of how the library works.
35
-
> See for some background on this project: https://bitcoindevkit.org/blog/road-to-bdk-1/ (ignore the timeline 😁)
36
-
> For a release timeline see the [`BDK 1.0 project page`].
37
-
38
34
## Architecture
39
35
40
36
The project is split up into several crates in the `/crates` directory:
@@ -51,11 +47,10 @@ Fully working examples of how to use these components are in `/example-crates`:
51
47
-[`example_electrum`](./example-crates/example_electrum): A command line Bitcoin wallet application built on top of `example_cli` and the `electrum` crate. It shows the power of the bdk tools (`chain` + `file_store` + `electrum`), without depending on the main `bdk_wallet` library.
52
48
-[`example_esplora`](./example-crates/example_esplora): A command line Bitcoin wallet application built on top of `example_cli` and the `esplora` crate. It shows the power of the bdk tools (`chain` + `file_store` + `esplora`), without depending on the main `bdk_wallet` library.
53
49
-[`example_bitcoind_rpc_polling`](./example-crates/example_bitcoind_rpc_polling): A command line Bitcoin wallet application built on top of `example_cli` and the `bitcoind_rpc` crate. It shows the power of the bdk tools (`chain` + `file_store` + `bitcoind_rpc`), without depending on the main `bdk_wallet` library.
54
-
-[`wallet_esplora_blocking`](./example-crates/wallet_esplora_blocking): Uses the `Wallet` to sync and spend using the Esplora blocking interface.
55
-
-[`wallet_esplora_async`](./example-crates/wallet_esplora_async): Uses the `Wallet` to sync and spend using the Esplora asynchronous interface.
56
-
-[`wallet_electrum`](./example-crates/wallet_electrum): Uses the `Wallet` to sync and spend using Electrum.
50
+
-[`example_wallet_esplora_blocking`](./example-crates/example_wallet_esplora_blocking): Uses the `Wallet` to sync and spend using the Esplora blocking interface.
51
+
-[`example_wallet_esplora_async`](./example-crates/example_wallet_esplora_async): Uses the `Wallet` to sync and spend using the Esplora asynchronous interface.
52
+
-[`example_wallet_electrum`](./example-crates/example_wallet_electrum): Uses the `Wallet` to sync and spend using Electrum.
0 commit comments