✅
Blockthon ~ Fast & Easy
HomeInstallDocument'sOfficial websiteDonate / Sponser
  • Blockthon
    • Installing
  • Private Key (Hex)
    • Private Key (hex) to Mnemonic
    • Private Key (hex) to decimal
    • Private Key (hex) to Public Key
    • Private Key To Bytes (seed)
    • Private Key (hex) To Binary
    • Private Key From Passphrase
    • Private Key From integer
    • Private Key (hex) From Root Key (xprv)
  • Public Key
  • Mnemonic
    • Mnemonic To Private Key
    • Mnemonic To Root Private Key (xprv)
  • Bytes (seed)
    • Bytes (seed) To Mnemonic
    • Bytes (seed) To Private Key (hex)
    • Bytes (seed) To Wif
  • Binary To Private Key (HEX)
  • Address
    • Compressed Bitcoin Address
    • UnCompressed Bitcoin Address
    • Bitcoin P2PKH - P2SH - P2WPKH - P2WSH & P2WPKH in P2SH and P2WSH in P2SH Address
  • Ethereum Address From HEX
  • TRON (TRX) Address From HEX
  • Litecoin Address From HEX
  • Dogecoin Address From HEX
  • Dash Address From HEX
  • BitcoinGold Address From HEX
  • Blockthon - Donate / Support
Powered by GitBook
On this page
  1. Address

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]
PreviousCompressed Bitcoin AddressNextBitcoin P2PKH - P2SH - P2WPKH - P2WSH & P2WPKH in P2SH and P2WSH in P2SH Address

Last updated 2 years ago