We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does bit allow for the creation of bech32 addresses?
The text was updated successfully, but these errors were encountered:
Try like this `from bit import Key from bit.crypto import ripemd160_sha256 from bit.base32 import encode
key = Key.from_hex('0000000000000000000000000000000000000000000000000000000000000001') byte_public_key_comp = key._pk.public_key.format(compressed=True) witprog = ripemd160_sha256(byte_public_key_comp) segwit = encode('bc', 0, witprog) print("segwit", segwit)`
Sorry, something went wrong.
No branches or pull requests
Does bit allow for the creation of bech32 addresses?
The text was updated successfully, but these errors were encountered: