python-bip32 icon indicating copy to clipboard operation
python-bip32 copied to clipboard

Minimalistic implementation of BIP32

Results 15 python-bip32 issues
Sort by recently updated
recently updated
newest added

Hello, Would it be possible to upgrade `coincurve` version to v19.0.0? That release aligns to the latest release from `SECP256K1` and also has a conda-forge pcakage. Also, I am preparing...

It appears that the license may be listed incorrectly on PyPI. The source code clearly includes the [BSD 3-clause license](https://github.com/darosior/python-bip32/blob/1492d39312f1d9630363c292f6ab8beb8ceb16dd/LICENCE), while [setup.py](https://github.com/darosior/python-bip32/blob/1492d39312f1d9630363c292f6ab8beb8ceb16dd/setup.py#L20) lists it as MIT licensed.

https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki#user-content-Key_identifiers

good first issue

First to test https://github.com/rustyrussell/secp256k1-py and then to get rid of coincurve.

enhancement

Hi, first of all thanks a lot for this great library! I was wondering whether you would consider adding support for the ypub and ypub versions of extended keys? I...

Old 1626 words Standart 2048

This library is handy and I wrote a [bip44 version](https://github.com/kigawas/python-bip44) 😃 Perhaps you can introduce pyproject.toml with poetry

I needed to create ypub and zpub extended keys, so I made this small modification. note: if this doesn't get accepted, for future readers, you can use this instead: `base58.b58encode_check(base58.b58decode_check(xpub_here).replace(0x0488B21E.to_bytes(4,...

I'm usually needing signatures in addition to the keys, and for this purpose i usually use `coincurve` too. Therefore i think it would make sense to have a "sign from...

good first issue