convert bytes seed to private key hex
from Blockthon.Wallet import getBytes, Bytes_To_PrivateKey # generated random bytes without repeat bytes_str = getBytes() # convert bytes to hex private key privatekey = Bytes_To_PrivateKey(bytestring=bytes_str)
Last updated 1 year ago