Uh oh!
There was an error while loading. Please reload this page.
Get binding generation & publishing ready for 0.1 release - #114
Conversation
6fea98d to
527ecffComparedbb0d0d to
ff7e913Comparetnull
commented
Jun 14, 2023
Rebased on #124. |
f21bd20 to
049d0e9Compare9e40c70 to
bbb4c15Compare0c37836 to
7f6d70aCompare7f6d70a to
1716da5CompareWe already have `Node::spendable_onchain_balance` and `Node::total_onchain_balance` exposed, so the general `onchain_balance` is kind of redudant. As it is also not exposed (and not easily exposable) in bindings, we can make the bindings and Rust APIs more homogeneous by dropping the call. Plus, we probably should avoid exposing any BDK types in the public API until BDK 1.0 landed and we made the switch, as many breaking changes will be coming with it.
1716da5 to
9e9a76fComparetnull
commented
Jun 20, 2023
Rebased on main after #124 was merged. |
jurvis
left a comment
There was a problem hiding this comment.
took a glance and looks great to me + had some questions :)
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
9e9a76f to
48d52d4CompareAs we're using the `onchain` keyword everywhere in the API to discern onchain-operations (e.g., `send_to_onchain_address`, `spendable_onchain_balance`, etc.) we also align the funding API call here and rename `new_funding_address` to `new_onchain_address`.
Now that we split out UniFFI to its own feature, we can make use of the `missing_docs` lint again and enforce it in CI for release docs as well as private items.
.. and use a particular nightly rev for where it's not.
48d52d4 to
7de04b7Comparetnull
commented
Jun 21, 2023
Squashed fixups without further changes. |
| print('Failed to read Package.swift file.', file=sys.stderr) | ||
| sys.exit(1) | ||
| package_file = original_package_file |
There was a problem hiding this comment.
Is the additional variable needed? @arik-so Do you have any insight?
Based on #124.Follow-up to #59.
Closes#73.
Here we'll add the final necessary steps to get bindings ready for the initial 'official' release.