@dartess/multicoin-address-validator
Version:
Multicoin address validator for Bitcoin and other Altcoins ported to TypeScript.
12 lines (11 loc) • 425 B
TypeScript
import { ValidatorParams } from '../validators/bitcoin_validator';
declare const pivxCurrency: {
readonly name: "PIVX";
readonly symbol: "pivx";
readonly addressTypes: {
readonly prod: readonly ["1e", "0d"];
readonly testnet: readonly [];
};
};
declare const pivxValidate: (address: ValidatorParams[0], opts?: ValidatorParams[2]) => boolean;
export { pivxCurrency, pivxValidate, };