Post
Topic
Board Development & Technical Discussion
Re: VanitySearch (Yet another address prefix finder)
by
inlovewiththedj
on 28/05/2020, 15:21:23 UTC
Simply add echo $i; before or after the command


Code:
pons@linpons:~/VanitySearch$ for i in `more tst.txt`; do ./VanitySearch -cp $i | grep Addr | grep P2PKH | awk '{ print $3 }';echo $i; done
12csaq6uhAtyhzUN8N4akVpat7GP6wB3ea
5B3F38AF935A3640D158E871CE6E9666DB862636383386EE510F18CCC3BD72EB
1PGVt2mWHgbULrx9pjWDPc2EKp2LWLT4fd
5B3F38AF935A3640D158E871CE6E9666DB862636383386EE510F18CCC3BD72EC
1DVjd5oZqCCYywtgL7FLbT3ZX4FFJK5nwc
5B3F38AF935A3640D158E871CE6E9666DB862636383386EE510F18CCC3BD72ED


I tested today this method on my Linux Mint and unfortunately it is slow... don't know why if this is simple mathematics process (generate public address from hex key and save it to file)
I try 1575 lines of hex heys (100KB file)
The whole process took 54 sec.
I tested on HDD and SSD and results are the same.

Do you know how speedup this process to make it as fast as generating new addresses (where I have easily Mb/s of file increment)

thanks