module Base58

Overview

From https://github.com/russ/base58/blob/master/src/base58.cr but with different alphabet

Extended Modules

Defined in:

tron-wallet/converter.cr

Constant Summary

ALPHABET = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"
BASE = ALPHABET.size

Instance Method Summary

Instance Method Detail

def decode(base58_val : String) : Number #

[View source]
def encode(int_val : Number) : String #

[View source]