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

Python-based library for the implementation of a hierarchical deterministic wallet generator for more than 140+ multiple cryptocurrencies.

Results 42 python-hdwallet issues
Sort by recently updated
recently updated
newest added

Hi, I'm trying the example https://github.com/meherett/python-hdwallet/blob/master/examples/from_xpublic_key.py to use with my Ledger Hardware Wallet to get all addresses to watch my balances. From Ledger Live I go to my Bitcoin account...

ycash wallet support

Hm, this will cause RFCs book to use 0.4.8 probably almost indefinitely this way. Maybe good, but definitely a different from the previous setup. _Originally posted by @nagisa in https://github.com/rust-lang/rfcs/pull/3136#discussion_r641963050_

Code: ``` from hdwallet import HDWallet from hdwallet.symbols import BTC as SYMBOL hdwallet: HDWallet = HDWallet(symbol=SYMBOL) PRIVATE_KEY: str = hashlib.sha256(b"asdasd").hexdigest() hdwallet.from_private_key(PRIVATE_KEY) print("Uncompressed:", hdwallet.uncompressed()) print("P2PKH Address:", hdwallet.p2pkh_address()) ``` Result: ``` Uncompressed:...

How create bitcoincash address (bitcoincash:qr...) from this package ??? used this source , not worked to this type address : ``` from hdwallwet import HDWallet from hdwallet.symbols import BCH as...

enhancement
address

When I want to generate dogetest address from xpub i got this error messge: ``` site-packages\hdwallet\utils.py", line 343, in is_root_xpublic_key semantic.upper() AttributeError: 'NoneType' object has no attribute 'upper' ``` I...

help wanted

Fix buggy testing process `Public Key` should not support hard derivations. see [bip-0032 Implications](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki#implications)

Hi @meherett. This is the patch we've been discussing. Please check to see if it fits.