isEthereumAddress.js 176 B

123456
  1. import assertString from './util/assertString';
  2. var eth = /^(0x)[0-9a-f]{40}$/i;
  3. export default function isEthereumAddress(str) {
  4. assertString(str);
  5. return eth.test(str);
  6. }