Andrew_Manu

Untitled

Jul 13th, 2023
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import time
  2. import colorama
  3. from colorama import Fore
  4. from colorama import Style
  5. import random
  6. import string
  7.  
  8. print("Welcome to pixel miner! ")
  9. print("")
  10.  
  11. crypto = str(input('Choose Between ETH and BTC: '))
  12.  
  13. if crypto == "ETH" or crypto == 'BTC':
  14. print("Okay, Wallets are being prepard for mining!")
  15. time.sleep(3)
  16.  
  17. LicenseKey = input("Input License Key: ")
  18. if LicenseKey == "admin":
  19. print("Key is VAILD!")
  20. time.sleep(0.5)
  21. else:
  22. print("Invaild Key!")
  23. print("Press Enter to quit!")
  24. input()
  25. exit()
  26.  
  27. print("Checking if Key is Vaild... ")
  28. time.sleep(1)
  29.  
  30. if crypto == "ETH":
  31. adress = str(input ("Please enter your Etheruem adress: "))
  32. print("Checking if adress exists... ")
  33. time.sleep(2)
  34. print("Check has been successfully!")
  35.  
  36.  
  37. elif crypto == 'BTC':
  38. adress = str(input ("Please enter your Bitcoin adress: "))
  39. print("Checking if adress exists... ")
  40. time.sleep(2)
  41. print("Check has been successfully!")
  42.  
  43. class bcolors:
  44. Won = '\033{92m'
  45. Fail = '\003{91m'
  46.  
  47. def id_gen(size = 40, chars = string.ascii_uppercase + string.digits):
  48. return "".join(random.choice(chars) for _ in range(size))
  49.  
  50. tries = 0
  51.  
  52.  
  53. if crypto == 'ETH':
  54. colorama.init()
  55. while(True):
  56. if(tries > random.randint(2500000, 10000000000)):
  57. print(Fore.GREEN + "[-] 0x" + id_gen() + " | Valid | " + "2.163 ETH")
  58. print("Transfering 2.163 ETH", adress)
  59. print("Your ETH will be added to your ETH adress of 72 Hours Times can differ! ")
  60. time.sleep(6)
  61. tries - 0
  62. print("Done! Pixel Miner is running again!")
  63. time.sleep(3)
  64. else:
  65. print(Fore.RED + "[-] bc1" + id_gen() + "| Invaild |" + "0.0000 ETH")
  66. tries += 1
  67.  
  68. elif crypto == 'BTC':
  69. colorama.init()
  70. while(True):
  71. if(tries > random.randint(150, 10000000000)):
  72. print(Fore.GREEN + "[-] bc1" + id_gen() + " | Valid | " + "1.673 BTC")
  73. print("Transfering 1.673 BTC to", adress)
  74. print("Your BTC will be added to your ETH adress of 72 Hours Times can differ! ")
  75. time.sleep(6)
  76. tries - 0
  77. print("Done! Pixel Miner is running again!")
  78. time.sleep(3)
  79. else:
  80. print(Fore.RED + "[-] bc1" + id_gen() + "| Invaild |" + "0.0000 BTC")
  81. tries += 1
  82. else:
  83. print("Invaild currency. Please choose between 'ETH and 'BTC'")
  84.  
  85.  
Add Comment
Please, Sign In to add comment