-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Light client tutorial using bdk-cli
#49
Light client tutorial using bdk-cli
#49
Conversation
6cad546
to
458efe4
Compare
- Install `bdk-cli` with `compact_filters` feature | ||
|
||
```shell | ||
$ cargo install bdk-cli --features compact_filters |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Package bdk-cli v0.2.0
does not have the feature compact_filters
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, because bitcoindevkit/bdk-cli#26 hasn't been merged yet. You can build bdk-cli
on top of that PR branch to get compact_filters
support.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oops, sorry!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
got the correct version from your pr branch now :P
bdk-cli
bdk-cli
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi sorry for the delay in getting this reviewed. I ran through all the steps and found a few things that should be fixed. For the bitcoin-cli
commands I switched them to use the internal docker command so we don't need to worry about bitcoind rpc permissions.
Thanks @notmandatory for taking the time for such a thorough review. Addressed all the comments. Hope I didn't miss any. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, I know these take a lot of work so thanks for putting it all together.
Looks good, I know these take a lot of work so thanks for putting it all together. Please move it back to "Ready for review" when you're ready to have it merged. |
Thanks @notmandatory , I think I will always find nits to update every time I look. Made a bunch of modification. Removed mentions of Neutrino in general and called it So far this seems final from my side. Opening for the merge. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK, I also ran through the examples again and confirmed they work.
Updated with better structuring of various sentences and segments. Removed mentions of Neutrino apart from metadata and credit.
9ad27fd
to
d940d13
Compare
I had to also do a re-base to resolve unrelated merge conflicts. |
This is a draft tutorial I am working on for a demo of
bdk-cli
withcompact_filters
feature. (included in bitcoindevkit/bdk-cli#26)This allows wallet devs to easily spawn their Neurtino like backend using BDK.
The demo only covers basic wallet functionalities.
The demo needs
bdk-cli
compiled on the above PR branch.Suggestions, improvements, and additions are welcome.
Note to Reviewers.
Until bitcoindevkit/bdk-cli#26 gets merged, you have to build
bdk-cli
on top of that PR branch to getcompact_filters
support.