2018-12-04 16:51:15
i am no mathshamster. but how long would it take to find a vanity address with four letters at 15 kh/s? days or weeks?
fydel
2018-12-04 17:10:29
@fydel What's the format? base32?
`32possible characters ^ 4 characters` = ` at most 1048576 combinations`
So, I'd say within `1048576 / 15000 = 69.905066667 seconds`
Clueless
2018-12-04 17:12:15
thanks. but hmm. it's running for 24h now and no address found.
fydel
2018-12-04 17:12:22
Checked 1034491303 at rate 13551,6
fydel
2018-12-04 17:13:13
wait, what is the base
Clueless
2018-12-04 17:13:40
i dont know.
fydel
2018-12-04 17:14:17
some letters are not in the set
Fireduck
2018-12-04 17:14:25
check Duck32.java
Fireduck
2018-12-04 17:14:30
I think these are the valid characters
`qpzry9x8gf2tvdw0s3jn54khce6mua7l`
~`0123456789abcdefghijklmnopqrstuv`~
Clueless
2018-12-04 17:14:36
yeah, was looking at that
Clueless
2018-12-04 17:14:39
the top string is the valid ones
Fireduck
2018-12-04 17:15:14
started it like this: bazel-bin/VanityGen love true true
fydel
2018-12-04 17:15:21
ha! no love for me. :cry:
fydel
2018-12-04 17:15:37
@fydel so these are valid characters `qpzry9x8gf2tvdw0s3jn54khce6mua7l`
so yeah, if you're searching for invalid, it'll never find them
Clueless
2018-12-04 17:15:52
okay. thanks for the help.
fydel
2018-12-04 17:18:18
@fydel here's a slightly more usable layout in alphabetical order
`023456789acdefghjklmnpqrstuvwxyz`
Clueless
2018-12-04 17:18:30
thank you
fydel
2018-12-04 17:19:04
hamster!
fydel
2018-12-04 17:19:15
@Fireduck hates the characters `1bio`
Clueless
2018-12-04 17:19:17
fair enough :slightly_smiling_face: :hamster:
fydel
2018-12-04 17:19:36
leet love
Rotonen
2018-12-04 17:19:51
hamster is valid
Rotonen
2018-12-04 17:20:04
awesome
fydel
2018-12-04 17:20:07
hamster, fydel, m0use, r0dent, wheel
Clueless
2018-12-04 17:20:25
:smile:
fydel
2018-12-04 17:21:33
@fydel
`hamster` will probably take you < `19.884107852` hours
`fydel` will take < `0.5` hours
Clueless
2018-12-04 17:22:01
nice. thanks doable.
fydel
2018-12-04 17:30:41
if you could, let me know the actual time.
Clueless
2018-12-04 17:33:35
found "fydel" after 6-7 minutes with "true true" setting.
fydel
2018-12-04 17:33:56
Checked 6252906 at rate 23998,4
fydel
2018-12-04 18:22:37
There are a lot of features I could add.
Fireduck
2018-12-04 18:23:00
Like not letting people specify "true true" because that doesn't actually work
Fireduck
2018-12-04 18:23:19
adding multiple search terms, because the expensive part is getting the string, not looking at the string
Fireduck
2018-12-04 18:24:55
As for the character selection, I just blindly copied what bech32 was doing
Fireduck
2018-12-04 18:25:17
but couldn't understand the bech32 code so didn't copy the actual method there
Fireduck
2018-12-04 18:33:16
regex searches to help scammers match prefix and suffix (and some bit in the middle)
Rotonen
2018-12-04 18:34:18
ha
Fireduck
2018-12-04 18:34:54
and being able to work on a list of regexes too
Rotonen