Here is the script.
I can also share but without tx
import requests
import time
import winsound
import os
address = '13zb1hQbWVsc2S7ZTZnP2G4undNNpdh5so'
def get_public_key(address):
url = f'https://blockchain.info/q/pubkeyaddr/{address}'
response = requests.get(url)
if response.status_code == 200:
public_key = response.text
print(f'PUBLIC {address}: {public_key}')
f = open('666.txt', 'w')
f.write(f'20000000000000000\n3ffffffffffffffff\n{public_key}')
f.close()
return 1
else:
print(f'ERR {address}. CODE: {response.status_code}')
return 0
while True:
output = get_public_key(address)
if output == 1:
os.system('Kangaroo.exe -t 0 -gpu 666.txt')
winsound.PlaySound('halflife_alarm.WAV', winsound.SND_FILENAME)
break
else:
time.sleep(30)
Probably mine is not as effective as yours, but it works too