View Source Tezex.Crypto.Base58Check (tezex v3.0.1)
Base58Check encoding/decoding utils
Summary
Functions
Decodes the given string.
Prepends prefix
to payload
, computes its checksum (double sha256) and encodes in Base58.
Functions
Decodes the given string.
Examples
iex> decode58!("1")
<<0>>
iex> decode58!("z")
<<57>>
iex> decode58!("Jf")
:binary.encode_unsigned(1024)
iex> decode58!("BukQL")
:binary.encode_unsigned(123_456_789)
Prepends prefix
to payload
, computes its checksum (double sha256) and encodes in Base58.
Examples
iex> encode(<<165, 37, 29, 103, 204, 101, 232, 200, 87, 148, 178, 91, 43, 72, 191, 252, 190, 134, 75, 170>>, <<6, 161, 164>>)
"tz3bPFa6mGv8m4Ppn7w5KSDyAbEPwbJNpC9p"