UNPKG

ecashaddrjs

Version:

eCash cashaddr address format support for Node.js and web browsers.

11 lines (10 loc) 215 B
export type AddressType = 'p2pkh' | 'p2sh'; export interface DecodedAddress { prefix: string; type: AddressType; hash: string; } export interface TypeAndHash { type: AddressType; hash: string; }