libwally-core icon indicating copy to clipboard operation
libwally-core copied to clipboard

Useful primitives for wallets

Results 45 libwally-core issues
Sort by recently updated
recently updated
newest added

Similar to #103, but it would produce bytes containing the `scriptPubKey`. This is useful when composing a transaction, to directly generate a change output. Otherwise you have to derive a...

I am trying to install `wallycore` on an `alpine`-linux docker-image. Alpine linux is using musl instead of glibc. Since 0.8.4 wallycore is released a built-distribution for the manylinux-platform. Unfortunately, manylinux...

Based on the excellent work of @k-matsuzawa in https://github.com/ElementsProject/libwally-core/pull/202 (which this PR replaces). The major changes from the original PR are: - Use the new `_n` api call variants to...

The new `bip32_key_from_parent_path_str` function takes a `path_str` argument. When this starts with `m/` it should strip the first `depth` levels from the path string. Currently it just treats everything as...

Are there plans for this? https://github.com/bitcoin/bips/blob/master/bip-0086.mediawiki

https://github.com/ElementsProject/secp256k1-zkp/pull/131 adds MuSig2 support to secp256k1-zkp. According to its [documentation](https://github.com/jonasnick/secp256k1-zkp/blob/musig2/src/modules/musig/musig.md) the interface is "designed to be misuse resistant". Is there anything libwally-core can add to this? Or should consumers just...

Occassionally in c-lightning we need to re-combine PSBTs, e.g. when a funding transaction is being RBF'd and we need to add more inputs to an existing PSBT. Our wallet APIs...