The base58check uses this array of chars: "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"
Bitcoin base58 alphabet
Tezos base58 alphabet
Definition
Why is fxhash using this one? ("123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ")
I get that order doesn't matter for the random generation of var fxhash, but I realized I was using the wrong index for base58 to decimal conversion because I was relying on the defined alphabet variable.
The base58check uses this array of chars: "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"
Bitcoin base58 alphabet
Tezos base58 alphabet
Definition
Why is fxhash using this one? ("123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ")
I get that order doesn't matter for the random generation of
var fxhash, but I realized I was using the wrong index for base58 to decimal conversion because I was relying on the definedalphabetvariable.