Base58 encoder / decoder for AssemblyScript.
npm install as-base58Special thanks to https://github.com/cryptocoinjs/base-x for the javascript version.
``ts
import { encode, decode } from "as-base58";
const input = "ABCD1234"
assert(input = enocde(decode("ABCD1234"));
``