bitcoin-konten mit python erstellen

2 years ago
5

ein bisschen python-code... und zack ein neues, einsatzbereites bitcoin-konto

python3 -m pip install --upgrade pip
pip3 install bitcoinlib
pip3 install mnemonic

from bitcoinlib.wallets import Wallet
w = Wallet.create('passwort')
key = w.get_key()
key.address

w.scan()
w.info()

pip2 install mnemonic
from mnemonic import mnemonic
passphrase = Mnemonic().generate()

Loading comments...