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
Copy file name to clipboardexpand all lines: CHANGELOG.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -158,7 +158,7 @@ BDK and LDK together.
158
158
- Add the ability to specify which leaves to sign in a taproot transaction through `TapLeavesOptions` in `SignOptions`
159
159
- Add the ability to specify whether a taproot transaction should be signed using the internal key or not, using `sign_with_tap_internal_key` in `SignOptions`
160
160
- Consolidate params `fee_amount` and `amount_needed` in `target_amount` in `CoinSelectionAlgorithm::coin_select` signature.
161
-
- Change the meaning of the `fee_amount` field inside `CoinSelectionResult`: from now on the `fee_amount` will represent only the fees asociated with the utxos in the `selected` field of `CoinSelectionResult`.
161
+
- Change the meaning of the `fee_amount` field inside `CoinSelectionResult`: from now on the `fee_amount` will represent only the fees associated with the utxos in the `selected` field of `CoinSelectionResult`.
162
162
- New `RpcBlockchain` implementation with various fixes.
163
163
- Return balance in separate categories, namely `confirmed`, `trusted_pending`, `untrusted_pending` & `immature`.
164
164
@@ -449,7 +449,7 @@ final transaction is created by calling `finish` on the builder.
449
449
#### Changed
450
450
- Simplify the architecture of blockchain traits
451
451
- Improve sync
452
-
- Remove unused varaint HeaderParseFail
452
+
- Remove unused variant HeaderParseFail
453
453
454
454
### CLI
455
455
#### Added
@@ -529,7 +529,7 @@ final transaction is created by calling `finish` on the builder.
529
529
- Use TXIN_DEFAULT_WEIGHT constant in coin selection
530
530
- Replace `must_use` with `required` in coin selection
531
531
- Take both spending policies into account in create_tx
532
-
- Check last derivation in cache to avoid recomputation
532
+
- Check last derivation in cache to avoid recomputing
533
533
- Use the branch-and-bound cs by default
534
534
- Make coin_select return UTXOs instead of TxIns
535
535
- Build output lookup inside complete transaction
@@ -550,7 +550,7 @@ final transaction is created by calling `finish` on the builder.
550
550
- Require esplora feature for repl example
551
551
552
552
#### Security
553
-
- Use dirs-next instead of dirs since the latter is unmantained
553
+
- Use dirs-next instead of dirs since the latter is unmaintained
Copy file name to clipboardexpand all lines: crates/esplora/README.md
+4-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# BDK Esplora
2
2
3
-
BDK Esplora extends [`esplora_client`](crate::esplora_client) to update [`bdk_chain`] structures
3
+
BDK Esplora extends [`esplora-client`] to update [`bdk_chain`] structures
4
4
from an Esplora server.
5
5
6
6
## Usage
@@ -31,3 +31,6 @@ use bdk_esplora::EsploraExt;
31
31
```
32
32
33
33
For full examples, refer to [`example-crates/wallet_esplora`](https://github.com/bitcoindevkit/bdk/tree/master/example-crates/wallet_esplora) (blocking) and [`example-crates/wallet_esplora_async`](https://github.com/bitcoindevkit/bdk/tree/master/example-crates/wallet_esplora_async).
0 commit comments