breez-sdk
breez-sdk copied to clipboard
The job to trigger a Jitpack build is successful even though the Jitpack build fails https://github.com/breez/breez-sdk/actions/runs/8237937194/job/22528030938 ``` Run # Jitpack only makes artifacts avaiable when someone requests them. # Jitpack...
The SDK has API and data model documentation in the form of rustdocs. We need a way to provide similar docs for the other languages we support.
Customer reported that calling `sendPayment()` returned only 5 minutes later with ``` "RpcError { code: None, message: \"no response from lightningd\", ``` Our `Config::payment_timeout_sec` https://github.com/breez/breez-sdk/blob/77f0b65ba340767de6e290b1a579ea5baf044a16/libs/sdk-core/src/models.rs#L457 should have kicked it. We...
There are many things that can go wrong on a device, which may affect the SDK's ability to function. A few ideas for what can be tracked: - number of...
I tried to send 50k sats from Breez Mobile to the Pulse node. It failed several times with `no_route`. Other tests I did for the same sender / receiver: -...
This PR switches `gl-client` to the `main-0.2` [branch](https://github.com/Blockstream/greenlight/commits/main-0.2), which introduces internal changes in authentication. This is WIP until further testing and review.
WASM
This is a tracking issue to manage the WASM implementation of the Breez SDK. **Tasks** - [x] Test different WASM/WASI/emscripten build methods - [ ] Identify changes required for Breez...
Fixes #563.
Boltz added support for Taproot Swaps: https://blog.boltz.exchange/p/introducing-taproot-swaps-putting We should look into integrating them.
`send_payment` and `send_spontaneous_payment` use the same return type `Payment` as `list_payments`. They mean very different things, however. `list_payments` is meant to give you a list of all the balance mutations:...