import { EthAddress } from '../interfaces'; /** * Ethereum addres validation * @param {string} address * @returns {boolean} * * This is a clone of Web3 utility (isAddress) * But this way is better because size of bundle is smaller * RND: * https://github.com/cilphex/ethereum-address/blob/master/index.js * https://www.npmjs.com/package/crypto-js * * TODO: Test for regular expression */ declare function CheckAddress(address: EthAddress): boolean; export default CheckAddress;