Luks crypto

Comment

Author: Admin | 2025-04-27

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters Show hidden characters import time import colorama from colorama import Fore from colorama import Style import random import string colorama.init() print(Fore.CYAN + ''' ## ## ######## ## ## ######### ############## ## ## ## ## ## ## # ## ## ## ## ## ## ## ##### ## ## ### ## ######## ## ## ##### ## #### #### ## ## ## ## # ## ### ### ## ## ######### ######## ######### ## ## ### ## ## ## ######### ####### #### #### ## #### ## # # # ## ## ## ## ## ## ## #### ####### ## ## ## ## ## ## #### ### ## ## ## ## ## ## # # ## ## ## ## ## #### ######## # ## Made by Luk-_-btw#6749 ''' + Fore.RESET) time.sleep(1) LicenseKey = '1312' if input('Enter your License Key: ') == LicenseKey: print("Checking if License key is valid...") time.sleep(2) print(Fore.GREEN + "Key is Valid!" + Fore.RESET) crypto = input("Choose between ETH or BTC: ") if crypto == 'ETH' or crypto == 'BTC': print("Okay. Wallets are being prepared ...") time.sleep(3) if crypto == "ETH": adress = str(input("Please enter your Ethereum Wallet adress: ")) print("Check if Wallet exist...") time.sleep(2) print(Fore.GREEN + "Check succesfully!" + Fore.RESET) time.sleep(1) print("Miner written by Luk-_-btw#6749") time.sleep(1) elif crypto == 'BTC': adress = str(input("Please enter your Bitcoin Wallet adress: ")) print("Check if Wallet exist...") time.sleep(2) print(Fore.GREEN + "Check succesfully!" + Fore.RESET) time.sleep(1) print("Miner written by Luk-_-btw#6749") time.sleep(1) def id_gen(size=40, chars=string.ascii_uppercase + string.digits): return "".join(random.choice(chars) for _ in range(size)) tries = 0 if crypto == "ETH": while(True): if(tries > random.randint(10000000000, 100000000000)): print(Fore.GREEN + "[-] 0x" + id_gen() + " | Valid | " + "0.582" + "ETH") print("Transfer 0.582 ETH to", adress) time.sleep(7) tries = 0 print("Done! Miner is running again!") time.sleep(3) else: print(Fore.RED + "[-] 0x" + id_gen() + " | Invalid | " + "0.00000 ETH") tries += 1 elif crypto == "BTC": while(True): if(tries >

Add Comment