Page cover

Private Key

Generated and convert Private Key (hex)

generated random private key (hex) with blockthon without repeat , very fast.

example 1:

on this example code very optimized and fast generated hex for private key .

from Blockthon.Wallet import getPrivateKey
# generated private key (hex) without repeat
privatekey = getPrivateKey()

example 2:

on this code all funcation's on Wallet Class import can use on Big project

from Blockthon import Wallet
# generated private key (hex) without repeat
privatekey = Wallet.getPrivateKey()

example 3:

from Blockthon import Wallet
# generated private key (hex) without repeat
privatekey = Wallet.PVK()

example 4:

here all class blockthon imported can used and very long code .

import Blockthon
# generated private key (hex) without repeat
privatekey = Blockthon.Wallet.getPrivateKey()
blockthon package for generated private key hex on python
Blockthon package PrivateKey Class

Last updated