libnexa-ts
Version:
A pure and powerful Nexa SDK library.
15 lines • 570 B
TypeScript
import { BufferParams } from '../common/interfaces';
export default class Base58Check {
private buf?;
constructor(obj?: Uint8Array | string | BufferParams);
static validChecksum(data: string | Uint8Array, checksum?: string | Uint8Array): boolean;
static decode(s: string): Uint8Array;
static checksum(buffer: Uint8Array): Uint8Array;
static encode(buf: Uint8Array): string;
toBuffer(): Uint8Array | undefined;
toString(): string;
private fromBuffer;
private fromString;
private set;
}
//# sourceMappingURL=base58check.d.ts.map