multiformats - v13.3.6
    Preparing search index...

    Interface CombobaseDecoder<Prefix>

    Interface implemented by multibase decoder, that takes multibase strings to bytes. It may support single encoding like base32 or multiple encodings like base32, base58btc, base64. If passed multibase is incompatible it will throw an exception.

    interface CombobaseDecoder<Prefix extends string> {
        decoders: Record<Prefix, UnibaseDecoder<Prefix>>;
        decode(multibase: Multibase<Prefix>): Uint8Array;
    }

    Type Parameters

    • Prefix extends string

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    Methods