UnCompressed Bitcoin Address

Generated and Convert Private Key to Uncompressed Address Wallet With Blockthon

import Blockthon as block

# generated private key
privatekey = block.PrivateKey()
# Convert Private Key To Un Compressed Address
uncompress_Address = block.Addr_From_PrivateKey(privatekey)

can another method:

import Blockthon as block

# generated private key
privatekey = block.PrivateKey()
# Convert Private Key To Un Compressed Address
uncompress_Address = block.Addr_From_PrivateKey(privatekey, False) # [compress=False]

Last updated