Will I be able to search for prefixes using these options? Would this work? -k -r "1[a-zA-Z]{33}" -o [folder] 1Test
No
-r and unspecified are mutually exclusive. You can do
-r 1Test[a-zA-z]{29} though. ( Keep in mind that there's also shorter addresses, so you may wish to specify a range, rather than fixed 29)
-o requires a filename output, not a folder
-o and any other flags should be specified before the pattern, not after, or they'll be assumed to be part of the regex
Ok I thought the pattern required to be after the -r flag like -o requires a file after it, thanks for the corrections for the wallet im looking forward to learning more customizable options with vanity gen
I generated this wallet, its pretty cool but idk if it makes the hall of fame, 1CanaryrAqbFnVQGxHqEgzxsiiSQBc4YYf it is a wallet with 29 consecutive letters in it with on 1 number.
Nice address but it's not hall of fame worthy. It isn't so difficult to generate addresses with just the leading 1 and the rest letters.
You can do plenty with a CPU - try this: vanitygen64 -k -r "1[a-zA-Z]{33}"
Will I be able to search for prefixes using these options? Would this work? -k -r "1[a-zA-Z]{33}" -o [folder] 1Test
Well you would have to reword the regex search to "1Test[a-zA-Z]{21,30}" because the bitcoin address could be 26 to 35 characters in length (just in case you found a short one). It wont be fast because you have to match the "1Test" string exactly. Start with something easier to test it out like
vanitygen64 -k -r -o file.txt 1T[a-zA-Z]{24,33}
you can add more letters after the T but then shorten up the length like this
vanitygen64 -k -r -o file.txt 1Te[a-zA-Z]{23,32}
also you can check for case insensitive matches of first part like this
vanitygen64 -k -r -o file.txt 1[Tt][Ee][a-zA-Z]{23,32}
These will match anywhere in the string so for the shorter matches on longer bitcoin addresses, you will not see 1Test at the beginning necessarily.
Interesting, using these I can hypothetically generate a wallet that has the pattern anywhere in the wallet by modifying these options?