base58.d.ts 187 B

123
  1. import type { BytesLike } from '../types/UtilsTypes.js';
  2. export declare function encode58(buffer: BytesLike | string): string;
  3. export declare function decode58(string: string): number[];