UNPKG

mochimo-wots

Version:

TypeScript implementation of Mochimo WOTS for v3

5 lines (4 loc) 251 B
import { ByteArray } from '../types'; export declare function addrTagToBase58(addrTag: ByteArray): string | null; export declare function validateBase58Tag(tag: string): boolean; export declare function base58ToAddrTag(tag: string): ByteArray | null;