Check all 'found' bitcoins daily for value using electrum private wallet server #9
room101-dev
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
#here we take all new keys found daily and run them through the electrum 'sweep' to see if any coins have value, or you could just to a history to verify that they ever had value
Crypto$ cat test-key.sh
tail -n 500 found-vg-new.txt | cut -f 1 -d: | ./test-all.sh
Crypto$ cat test-all.sh
get current found-priv-keys, and sweep into bitcoin server through electrum-server
electrum daemon -d --oneserver --server 192.168.1.8:50001:t
electrum getinfo
electrum load_wallet
loop through all lines of file
addr=$( electrum listaddresses | awk 'length>2' | shuf -n 1 | sed 's/,//g' )
echo 'addr',$addr
while read priv; do
echo $priv , $addr
electrum sweep $priv $addr
sleep 5
done
electrum stop
Beta Was this translation helpful? Give feedback.
All reactions