UNPKG

@bcpros/crypto-wallet-core

Version:

A multi-currency support library for address derivation, private key creation, and transaction creation

11 lines (8 loc) 184 B
import { EthValidation } from '../eth'; export class MaticValidation extends EthValidation { regex: RegExp; constructor() { super(); this.regex = /matic|polygon/i; } }