Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0] - 2026-03-16

### Added

- Expand TxBuilder API ([#21](https://github.com/bitcoindevkit/bdk-wasm/issues/21)):
Expand All @@ -24,10 +26,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `Wallet::insert_txout` for providing external TxOut values for fee calculation ([#21](https://github.com/bitcoindevkit/bdk-wasm/issues/21))
- `BuildFeeBumpError` variants: `TransactionNotFound`, `TransactionConfirmed`, `IrreplaceableTransaction`, `FeeRateUnavailable`, `InvalidOutputIndex`
- `WalletEvent` type and `Wallet::apply_update_events` for reacting to wallet state changes ([#19](https://github.com/bitcoindevkit/bdk-wasm/issues/19))
- `Transaction::to_bytes` and `Transaction::from_bytes` for consensus serialization ([#38](https://github.com/bitcoindevkit/bdk-wasm/issues/38), [#39](https://github.com/bitcoindevkit/bdk-wasm/pull/39)). Enables BDK ↔ LDK interop (e.g. channel funding transactions)
- Upgrade BDK to 2.3.0 with new API wrappers ([#14](https://github.com/bitcoindevkit/bdk-wasm/pull/14)):
- `Wallet::create_from_two_path_descriptor` (BIP-389 multipath descriptors)
- `TxBuilder::exclude_unconfirmed` and `TxBuilder::exclude_below_confirmations`
- Dust check methods on `Amount` and `Script` ([#13](https://github.com/bitcoindevkit/bdk-wasm/pull/13))
- Dust check methods ([#13](https://github.com/bitcoindevkit/bdk-wasm/pull/13)):
- `Amount::is_dust(script)` — check whether an amount is below the dust limit for a given script
- `ScriptBuf::minimal_non_dust()` — returns the minimum non-dust amount for a script
- `ScriptBuf::minimal_non_dust_custom(dust_relay_fee)` — same with a custom dust relay fee rate
- Regtest integration test environment with Docker Compose and Esplora ([#26](https://github.com/bitcoindevkit/bdk-wasm/pull/26))
- `CLAUDE.md` with agent instructions and project conventions ([#14](https://github.com/bitcoindevkit/bdk-wasm/pull/14))

Expand All @@ -45,13 +51,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- `bdk_wallet` 2.0.0 → 2.3.0
- `bdk_esplora` 0.22.0 → 0.22.1
- `wasm-bindgen` 0.2.100 → 0.2.113
- `wasm-bindgen` 0.2.100 → 0.2.114
- `bitcoin` 0.32.6 → 0.32.8
- `anyhow` 1.0.98 → 1.0.102
- `serde` 1.0.219 → 1.0.228
- `web-sys` 0.3.77 → 0.3.90
- `web-sys` 0.3.77 → 0.3.91
- `getrandom` 0.2.16 → 0.2.17
- `wasm-bindgen-test` 0.3.50 → 0.3.63
- `wasm-bindgen-test` 0.3.50 → 0.3.64
- CI: `actions/checkout` v4.3.1 → v6.0.2, `actions/setup-node` v4.4.0 → v6.2.0, `actions/cache` v4 → v5.0.3
- CI: `dtolnay/rust-toolchain` v1, `Swatinem/rust-cache` v2.8.2 (unchanged), `actionlint` 1.7.11
- All CI actions SHA-pinned with version comments (including `publish-release.yml`)
Expand All @@ -77,5 +83,6 @@ Initial release under the [bitcoindevkit](https://github.com/bitcoindevkit) orga
- CODEOWNERS file
- Automated npm publishing for `@bitcoindevkit/bdk-wallet-web` and `@bitcoindevkit/bdk-wallet-node`

[Unreleased]: https://github.com/bitcoindevkit/bdk-wasm/compare/v0.2.0...HEAD
[Unreleased]: https://github.com/bitcoindevkit/bdk-wasm/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/bitcoindevkit/bdk-wasm/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/bitcoindevkit/bdk-wasm/releases/tag/v0.2.0
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitcoindevkit"
version = "0.2.0"
version = "0.3.0"
repository = "https://github.com/bitcoindevkit/bdk-wasm"
description = "A modern, lightweight, descriptor-based wallet library in WebAssembly for browsers and Node"
keywords = ["bitcoin", "descriptor", "wasm", "browser", "node"]
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
</p>

<p>
<a href="https://www.npmjs.com/package/bdk-wallet-web"><img alt="NPM Package (Web)" src="https://img.shields.io/npm/v/bdk-wallet-web.svg"/></a>
<a href="https://www.npmjs.com/package/bdk-wallet-node"><img alt="NPM Package (Node)" src="https://img.shields.io/npm/v/bdk-wallet-node.svg"/></a>
<a href="https://github.com/bitcoindevkit/bdk-wasm/blob/master/LICENSE"><img alt="MIT or Apache-2.0 Licensed" src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue.svg"/></a>
<a href="https://blog.rust-lang.org/2023/10/05/Rust-1.73.0.html"><img alt="Rustc Version 1.73.0+" src="https://img.shields.io/badge/rustc-1.73.0%2B-lightgrey.svg"/></a>
<a href="https://www.npmjs.com/package/@bitcoindevkit/bdk-wallet-web"><img alt="NPM Package (Web)" src="https://img.shields.io/npm/v/@bitcoindevkit/bdk-wallet-web.svg"/></a>
<a href="https://www.npmjs.com/package/@bitcoindevkit/bdk-wallet-node"><img alt="NPM Package (Node)" src="https://img.shields.io/npm/v/@bitcoindevkit/bdk-wallet-node.svg"/></a>
<a href="https://github.com/bitcoindevkit/bdk-wasm/blob/main/LICENSE-MIT"><img alt="MIT or Apache-2.0 Licensed" src="https://img.shields.io/badge/license-MIT%2FApache--2.0-blue.svg"/></a>
<a href="https://blog.rust-lang.org/2024/11/28/Rust-1.83.0.html"><img alt="Rustc Version 1.83.0+" src="https://img.shields.io/badge/rustc-1.83.0%2B-lightgrey.svg"/></a>
<a href="https://discord.gg/d7NkDKm"><img alt="Chat on Discord" src="https://img.shields.io/discord/753336465005608961?logo=discord"></a>
</p>

Expand Down Expand Up @@ -42,13 +42,13 @@ For a lightweight library providing stateless utility functions, see [`bitcoinjs
### Browser/Web

```sh
yarn add bdk-wallet-web
yarn add @bitcoindevkit/bdk-wallet-web
```

### Node.js

```sh
yarn add bdk-wallet-node
yarn add @bitcoindevkit/bdk-wallet-node
```

## Notes on WASM Specific Considerations
Expand Down
Loading