forked from Pymmdrza/BTCRichWalletPrivateKeyFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
richbtc.py
61 lines (53 loc) · 3.61 KB
/
richbtc.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import time
import sys
from hdwallet import HDWallet
from hdwallet.symbols import BTC as SYMBOL
from hexer import mHash
from colorama import Fore,Style
mmdrza = '''
███╗ ███╗███╗ ███╗██████╗ ██████╗ ███████╗ █████╗
████╗ ████║████╗ ████║██╔══██╗██╔══██╗╚══███╔╝██╔══██╗
██╔████╔██║██╔████╔██║██║ ██║██████╔╝ ███╔╝ ███████║
██║╚██╔╝██║██║╚██╔╝██║██║ ██║██╔══██╗ ███╔╝ ██╔══██║
██║ ╚═╝ ██║██║ ╚═╝ ██║██████╔╝██║ ██║███████╗██║ ██║
╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝
||======================================================||
||=========== ╔╦╗╔╦╗╔╦╗╦═╗╔═╗╔═╗ ╔═╗╔═╗╔╦╗ ===========||
||=========== ║║║║║║ ║║╠╦╝╔═╝╠═╣ ║ ║ ║║║║ ===========||
||=========== ╩ ╩╩ ╩═╩╝╩╚═╚═╝╩ ╩o╚═╝╚═╝╩ ╩ ===========||
||------------------------------------------------------||
||- WebSite ------------------------------- Mmdrza.Com -||
||- MAIL ---------------------------- [email protected] -||
||- DEV ---------------------------- DEV.to/Mmdrza -||
||- GiTHUB ---------------------- Github.Com/PyMmdrza -||
||- MEDIUM -------------- PythonWithMmdrza.Medium.Com -||
||======================================================||
'''
filename = 'btc.txt'
with open(filename) as f:
add = f.read().split()
add = set(add)
print(Fore.YELLOW,str(mmdrza),Fore.RED,'\n---------------[ Donate - Bitcoin Wallet = ',Fore.WHITE ,'16p9y6EstGYcnofGNvUJMEGKiAWhAr1uR8', Fore.RED,' ]---------------\n')
z = 1
def delay_print(s):
for c in s:
sys.stdout.write(c)
sys.stdout.flush()
time.sleep(0.15)
print(Fore.RED,'===========================================================================================\n')
delay_print('Can You Download Rich Wallet List For This Program Follow GitHub.Com/PyMmdrza Or Mmdrza.Com')
print(' <<---------->> Official Web Site = https://mmdrza.Com')
while True:
hex64 = mHash()
PRIVATE_KEY: str = hex64
hdwallet: HDWallet = HDWallet(symbol=SYMBOL)
hdwallet.from_private_key(private_key=PRIVATE_KEY)
priv = hdwallet.private_key()
p2pkh = hdwallet.p2pkh_address()
p2sh = hdwallet.p2sh_address()
p2wpkh = hdwallet.p2wpkh_address()
p2wsh = hdwallet.p2wsh_address()
p2wpkh2 = hdwallet.p2wpkh_in_p2sh_address()
p2wsh2 = hdwallet.p2wsh_in_p2sh_address()
print('Total Checked',str(z),Fore.YELLOW, str(p2pkh), Fore.RED, str(p2wpkh), Fore.GREEN, str(p2wpkh2), Fore.WHITE, str(p2sh), Fore.BLUE, str(p2wsh), Fore.MAGENTA, str(p2wsh2), Style.RESET_ALL, end="\r")
z += 1