Skip to content
View pxxx30's full-sized avatar

Block or report pxxx30

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
pxxx30/README.md

Erstelle einen neuen privaten Schlüssel

key = Key()

Erstelle ein Guthaben

balance = 250.0 # in BTC

Zeige den privaten und öffentlichen Schlüssel sowie das Guthaben an

print("Privater Schlüssel:", key.to_wif()) print("Öffentliche Adresse:", key.address) print("Guthaben:", balance, "BTC")

Erstelle eine Überweisung

def send_bitcoin(to_address, amount): global balance if amount <= balance: balance -= amount print(f"{amount} BTC wurden an {to_address} gesendet.") print(f"Verbleibendes Guthaben: {balance} BTC") else: send_bitcoin

Transaktion für die angegebenen Empfangsadresse

to_address = "bc1qlq30tzda5zy309fxrpprxunh6y3g9rnjhwf6q8" send_bitcoin(to_address, 2.0) # Sende 20 BTC

print("Wallet erfolgreich erstellt.") send_bitcoin(2.0)

Popular repositories Loading

  1. pxxx30 pxxx30 Public

    Config files for my GitHub profile.