Nadav Ivgi

Results 207 comments of Nadav Ivgi

Pretty straightforward if it just delegated to bitcoind's `walletcreatefundedpsbt`, but that would mean using all the utxos available in the wallet without being able to restrict them to specific ones....

> the first argument to `walletcreatefundedpsbt` allows caller to specify inputs themselves. Yes, I meant that in the context of the `fund` part. If bwt implemented coin selection on its...

It's actually just the electrum server implementation (`src/electrum/server.rs`) that's based on electrs, the index and query engines are separate, so it can't benefit much from bs/electrs's support for elements. It...

BWT provides a [real-time streaming API](https://github.com/bwt-dev/bwt#server-sent-events) for wallet events (also available via [WebHooks](https://github.com/bwt-dev/bwt#web-hooks)) and has an [HTTP API](https://github.com/bwt-dev/bwt#http-api) that's somewhat similar to Esplora, but also [different in some ways](https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2020-June/017911.html). I...

Hi Tyler, thanks for the suggestion! This is definitely on the roadmap. I'm currently in the process of doing some major refactoring for the wallet manager and indexer (should hopefully...

Thanks for the suggestion! I will look into making an ASCII-only version of the banner. In the meanwhile, if you find the broken characters annoying, you can turn it off...

Code has been available here for awhile, but didn't get officially released yet: https://github.com/bwt-dev/bwt-android

Thanks for the tip! Did you try with high-latency connections, say over Tor?

A gRPC/protobuf interface is something that I'd be willing to accept. It should be put behind a compile-time flag, like the current `http`/`electrum`/`webhooks` flags. Note that bwt already supports HTTP/2...