UNPKG

@bcpros/crypto-wallet-core

Version:

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

11 lines (8 loc) 177 B
import { EthValidation } from '../eth'; export class ArbValidation extends EthValidation { regex: RegExp; constructor() { super(); this.regex = /arbitrum/i; } }