2017-06-26 22:27:55 +00:00
|
|
|
// @flow
|
2017-06-26 23:27:26 +00:00
|
|
|
import WalletAddressValidator from 'wallet-address-validator';
|
2017-06-26 22:27:55 +00:00
|
|
|
import { normalise } from './ens';
|
|
|
|
import { toChecksumAddress } from 'ethereumjs-util';
|
2017-08-11 21:54:10 +00:00
|
|
|
import type { RawTransaction } from 'libs/transaction';
|
2017-06-26 22:27:55 +00:00
|
|
|
|
2017-06-26 23:27:26 +00:00
|
|
|
export function isValidETHAddress(address: string): boolean {
|
2017-07-02 05:49:06 +00:00
|
|
|
if (!address) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (address == '0x0000000000000000000000000000000000000000') return false;
|
|
|
|
return validateEtherAddress(address);
|
2017-06-26 23:27:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function isValidBTCAddress(address: string): boolean {
|
2017-07-02 05:49:06 +00:00
|
|
|
return WalletAddressValidator.validate(address, 'BTC');
|
2017-06-26 23:27:26 +00:00
|
|
|
}
|
|
|
|
|
2017-06-26 22:27:55 +00:00
|
|
|
export function isValidHex(str: string): boolean {
|
2017-07-02 05:49:06 +00:00
|
|
|
if (typeof str !== 'string') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (str === '') return true;
|
2017-07-28 00:31:59 +00:00
|
|
|
str =
|
|
|
|
str.substring(0, 2) == '0x'
|
|
|
|
? str.substring(2).toUpperCase()
|
|
|
|
: str.toUpperCase();
|
2017-07-02 05:49:06 +00:00
|
|
|
var re = /^[0-9A-F]+$/g;
|
|
|
|
return re.test(str);
|
2017-06-26 22:27:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function isValidENSorEtherAddress(address: string): boolean {
|
2017-07-02 05:49:06 +00:00
|
|
|
return isValidETHAddress(address) || isValidENSAddress(address);
|
2017-06-26 22:27:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function isValidENSName(str: string) {
|
2017-07-02 05:49:06 +00:00
|
|
|
try {
|
2017-07-16 21:02:13 +00:00
|
|
|
return (
|
|
|
|
str.length > 6 && normalise(str) != '' && str.substring(0, 2) != '0x'
|
|
|
|
);
|
2017-07-02 05:49:06 +00:00
|
|
|
} catch (e) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-06-26 22:27:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function isValidENSAddress(address: string): boolean {
|
2017-07-02 05:49:06 +00:00
|
|
|
try {
|
|
|
|
const normalized = normalise(address);
|
|
|
|
var tld = normalized.substr(normalized.lastIndexOf('.') + 1);
|
|
|
|
var validTLDs = {
|
|
|
|
eth: true,
|
|
|
|
test: true,
|
|
|
|
reverse: true
|
|
|
|
};
|
|
|
|
if (validTLDs[tld]) return true;
|
|
|
|
} catch (e) {
|
2017-06-26 22:27:55 +00:00
|
|
|
return false;
|
2017-07-02 05:49:06 +00:00
|
|
|
}
|
|
|
|
return false;
|
2017-06-26 22:27:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function isChecksumAddress(address: string): boolean {
|
2017-07-02 05:49:06 +00:00
|
|
|
return address == toChecksumAddress(address);
|
2017-06-26 22:27:55 +00:00
|
|
|
}
|
|
|
|
|
2017-06-26 23:27:26 +00:00
|
|
|
// FIXME we probably want to do checksum checks sideways
|
2017-06-26 22:27:55 +00:00
|
|
|
function validateEtherAddress(address: string): boolean {
|
2017-07-02 05:49:06 +00:00
|
|
|
if (address.substring(0, 2) != '0x') return false;
|
|
|
|
else if (!/^(0x)?[0-9a-f]{40}$/i.test(address)) return false;
|
2017-07-16 21:02:13 +00:00
|
|
|
else if (
|
|
|
|
/^(0x)?[0-9a-f]{40}$/.test(address) ||
|
|
|
|
/^(0x)?[0-9A-F]{40}$/.test(address)
|
|
|
|
)
|
|
|
|
return true;
|
2017-07-02 05:49:06 +00:00
|
|
|
else return isChecksumAddress(address);
|
2017-06-26 22:27:55 +00:00
|
|
|
}
|
2017-06-29 23:03:11 +00:00
|
|
|
|
|
|
|
export function isValidPrivKey(length: number): boolean {
|
2017-07-04 03:21:19 +00:00
|
|
|
return length === 64 || length === 128 || length === 132;
|
2017-06-29 23:03:11 +00:00
|
|
|
}
|
2017-07-13 21:02:39 +00:00
|
|
|
|
|
|
|
export function isPositiveIntegerOrZero(number: number): boolean {
|
|
|
|
if (isNaN(number) || !isFinite(number)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return number >= 0 && parseInt(number) === number;
|
|
|
|
}
|
2017-08-08 03:25:23 +00:00
|
|
|
|
2017-08-11 21:54:10 +00:00
|
|
|
export function isValidRawTx(rawTx: RawTransaction): boolean {
|
2017-08-08 03:25:23 +00:00
|
|
|
const propReqs = [
|
|
|
|
{ name: 'nonce', type: 'string', lenReq: true },
|
|
|
|
{ name: 'gasPrice', type: 'string', lenReq: true },
|
|
|
|
{ name: 'gasLimit', type: 'string', lenReq: true },
|
|
|
|
{ name: 'to', type: 'string', lenReq: true },
|
|
|
|
{ name: 'value', type: 'string', lenReq: true },
|
|
|
|
{ name: 'data', type: 'string', lenReq: false },
|
|
|
|
{ name: 'chainId', type: 'number' }
|
|
|
|
];
|
|
|
|
|
|
|
|
//ensure rawTx has above properties
|
|
|
|
//ensure all specified types match
|
|
|
|
//ensure length !0 for strings where length is required
|
|
|
|
//ensure valid hex for strings
|
|
|
|
//ensure all strings begin with '0x'
|
|
|
|
//ensure valid address for 'to' prop
|
|
|
|
//ensure rawTx only has above properties
|
|
|
|
|
|
|
|
for (let i = 0; i < propReqs.length; i++) {
|
|
|
|
const prop = propReqs[i];
|
|
|
|
const value = rawTx[prop.name];
|
|
|
|
|
|
|
|
if (!rawTx.hasOwnProperty(prop.name)) return false;
|
|
|
|
if (typeof value !== prop.type) return false;
|
|
|
|
if (prop.type === 'string') {
|
|
|
|
if (prop.lenReq && value.length === 0) return false;
|
|
|
|
if (value.length && value.substring(0, 2) !== '0x') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!isValidHex(value)) return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isValidETHAddress(rawTx.to)) return false;
|
|
|
|
if (Object.keys(rawTx).length !== propReqs.length) return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|