@dartess/multicoin-address-validator
Version:
Multicoin address validator for Bitcoin and other Altcoins ported to TypeScript.
4 lines (3 loc) • 331 B
TypeScript
import { getSupportedSymbols, CurrencySymbolAnyRegister, CurrencyNameAnyRegister, ValidateOpts } from './currencies';
declare function validate(address: string, currencySymbolOrName: CurrencySymbolAnyRegister | CurrencyNameAnyRegister, networkTypeOrOpts?: string | ValidateOpts): any;
export { validate, getSupportedSymbols, };