thunderbiscuit

Results 191 comments of thunderbiscuit

Awesome! Yep take it. Let me know if you run into trouble. I was thinking for a first workflow to just making sure the app builds, but if we decide...

Yeah let's start with just the build. The unit tests can come later. Thanks for looking into it!

A more concrete todo list of tasks for this would look something like this: - [ ] Remove all tests that hit live signet endpoints - [ ] Make use...

Sounds good to me as a first step! I also think in general that the "live tests" don't all need to be ported/transformed into examples (too redundant), and so it...

After cleaning up the tests in bdk-jvm for example, this is my output when I run them: ```shell just test ./gradlew test > Task :lib:test CreatingWalletTest > Failure > You...

Sorry for the delay. Ready for review now @reez.

Some notes related to the APIs I looked into: ## 1. `TxBuilder::ordering` [TxBuilder::ordering](https://docs.rs/bdk_wallet/1.0.0-beta.5/bdk_wallet/struct.TxBuilder.html#method.ordering) requires adding the [TxOrdering](https://docs.rs/bdk_wallet/1.0.0-beta.5/bdk_wallet/tx_builder/enum.TxOrdering.html) type, which has the `Custom` variant: ```rust Custom { input_sort: Arc Ordering>, output_sort:...

The TxBuilder [is being replaced by bdk-tx](https://github.com/bitcoindevkit/bdk_wallet/pull/297) in the 3.0 version of the library. I don't think we'll be putting much effort into exposing more complex things from the TxBuilder...

I have be quite successful at migrating Kotlin and Python to [this temporary crate](https://github.com/thunderbiscuit/rust-bitcoin-ffi). You can [see the PR here](#546). My current issue is around how to build the Swift...

This will be solved once #546 is merged.