UNPKG

@fordefi-public/crypto-address-validator-ts

Version:

Crypto address validator for Bitcoin and other Altcoins, forked to be used with typescript

10 lines (9 loc) 230 B
/** * Decode a base32 string. * This is made specifically for our use, deals only with proper strings */ export function b32decode(s: any): Uint8Array; /** * Encode a string to base32 */ export function b32encode(s: any): string;