UNPKG

@dartess/multicoin-address-validator

Version:

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

12 lines (11 loc) 430 B
import { ValidatorParams } from '../validators/bitcoin_validator'; declare const kmdCurrency: { readonly name: "Komodo"; readonly symbol: "kmd"; readonly addressTypes: { readonly prod: readonly ["3c", "55"]; readonly testnet: readonly ["0", "5"]; }; }; declare const kmdValidate: (address: ValidatorParams[0], opts?: ValidatorParams[2]) => boolean; export { kmdCurrency, kmdValidate, };