UNPKG

@dartess/multicoin-address-validator

Version:

Multicoin address validator for Bitcoin and other Altcoins ported to TypeScript.

12 lines (11 loc) 435 B
import { ValidatorParams } from '../validators/bitcoin_validator'; declare const xpmCurrency: { readonly name: "PrimeCoin"; readonly symbol: "xpm"; readonly addressTypes: { readonly prod: readonly ["17", "53"]; readonly testnet: readonly ["6f", "c4"]; }; }; declare const xpmValidate: (address: ValidatorParams[0], opts?: ValidatorParams[2]) => boolean; export { xpmCurrency, xpmValidate, };