I want to guess alphanumeric strings for Bitcoin mining to match leading zeros.
For example in scala, we can use base36 binary to text encoding:- BigInt(someAlphaNumString, 36) and increment it by adding BigInt(1, 36) to our string.
What is the better way to do same in elixir?