Anyone know what I need to modify to make the search start from a particular address and go up sequentially?
Basically I got a few GPUs that can no longer mine ETH and ZEC and for fun, I want to solve the 51th bit in the "32btc contest thread" located here
https://bitcointalk.org/index.php?topic=1306983.0;allI just need the search to start at 1,125,899,906,842,620 and end at 2,251,799,813,685,250.
Vanitygen isn't going to help you with that. What you need to do is convert those to hexidecimal, generate the corresponding wallet import format private key and find the address. Vanitygen randomly searches out addresses and compares them with your search parameters.
Take your decimal number.
I like this one: 1,125,899,906,842,623 because it converts to this
11111111111111111111111111111111111111111111111111 binary number
but you need to convert it to this
3FFFFFFFFFFFF hexadecimal number
then pad it with zeros to make it 64 characters
0000000000000000000000000000000000000000000000000003FFFFFFFFFFFF
now add 80 to the beginning (to make it a Bitcoin private key)
800000000000000000000000000000000000000000000000000003FFFFFFFFFFFF (keep this one in mind for later)
hash it once (SHA256)
08260BC6AE17D00E40464A8EE0DA4C9FDAF1BEFC14C528CFC169798D868860DD
hash that result (SHA256)
53FA3A525E44DEF51F9A0B6E910E6DCA51AB0A99E1756BB97BE32E01308390A0
Now take the first 4 bytes (this is the checksum) and add it to the end of the red number
800000000000000000000000000000000000000000000000000003FFFFFFFFFFFF53FA3A52
convert that to Base58
5HpHagT65TZzG1PH3CSu63k8DbpvD8s5ip4nFAaVmEdoLi3nb9s
There you have the uncompressed wallet import format private key for your original decimal private key which gives you the public address of:
1JnSYv9ZQ4kLRANt4FgbGVYBPXCrpfek6P
Which is empty. (one down, many to go!)
Seems like you need a specialized computer program to run through the possibilities for you but not Vanitygen.