Decoder

Fully qualified path: alexandria_encoding::base58::Decoder

#![allow(unused)]
fn main() {
pub trait Decoder<T>
}

Trait functions

decode

Decodes Base58 encoded data back to raw bytes

Arguments

  • data - The Base58 encoded data to decode

Returns

  • Array<u8> - Raw bytes decoded from Base58 format

Fully qualified path: alexandria_encoding::base58::Decoder::decode

#![allow(unused)]
fn main() {
fn decode(data: T) -> Array<u8>
}