/** * z represents the multibase encoding scheme of base58 encoding * @see https://github.com/multiformats/multibase/blob/master/multibase.csv#L18 * @ignore */ declare const MULTIBASE_ENCODED_BASE58_IDENTIFIER = "z"; /** * 0x01 indicates the end of the leading bytes according to variable integer spec * @see https://github.com/multiformats/multicodec * @ignore */ declare const VARIABLE_INTEGER_TRAILING_BYTE = 2; /** * 0x1206 indicates a Sm2 public key * */ declare const SM2_MULTICODEC_IDENTIFIER = 4614; export { MULTIBASE_ENCODED_BASE58_IDENTIFIER, VARIABLE_INTEGER_TRAILING_BYTE, SM2_MULTICODEC_IDENTIFIER, };