From b448441fee8d12be6e6d99281e8c912fb0656222 Mon Sep 17 00:00:00 2001 From: hellisabove <59116609+hellisabove@users.noreply.github.com> Date: Tue, 3 May 2022 16:56:10 +0300 Subject: [PATCH] Add files via upload --- miner.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 miner.py diff --git a/miner.py b/miner.py new file mode 100644 index 0000000..3fb373b --- /dev/null +++ b/miner.py @@ -0,0 +1,19 @@ +import string +import colorama +from colorama import * +import random +import time + +def main(): + address=input("Enter your Bitcoin address: ") + print("OK") + characters=string.ascii_lowercase+string.digits + for _ in range(100000): + print(Fore.RED + "> %s | 0.00000 BTC" % "".join(random.sample(characters,32))) + time.sleep(0.5) + print(Fore.GREEN + "> %s | 1.23838 BTC" % "".join(random.sample(characters,32))) + time.sleep(0.5) + print(Fore.WHITE + "> Attempting to transfer to your wallet...") + time.sleep(3) + print(Fore.WHITE + "> Done transfering BTC to wallet!") +main()