MyCrypto/common/libs/validators.ts
HenryNguyen5 5d4b36d453 Migrate to Typescript (#224)
* Refactor babel/types

* Refactor entry point

* Refactor actions

* Refactor api

* Full project refactor -- Broad type fixing sweep

* - completely fix merge conflicts
- handle various type errors

* Add tslint to package.json

* Dependency cleanup

* Fix module resolution

* Work on type definitions for untyped libs

* progress commit

* Add more definition typing

* various type additions

* Add unit types

* Fix sagaiterator  + unit types

* various types added

* additional type additions

* Fix typing on Sagas

* remove flowfixmes; swap translate for translateRaw

* Get rid of contracts - awaiting Henry's contract PR

* Remove contracts from routing

* Fix most of actions/reducers

* refactor actions directory structure

* fix reducer action type imports

* Fix most of type errors pre-actions refactor

* fix action creator imports in containers

* Refactor more

* Refactor index of actions

* fix action imports; use module level index export

* package-lock.json updated

* Use action types in props

* Type up action creators

* Fix most of connect errors

* Typefixing progress

* More types

* Fix run-time errors

* Caching improvements for webpack

* Remove path resolve from webpack

* Update non-breaking packages to latest version

* Fix token typing

* Remove unused color code

* Fix wallet decrypt dispatch

* Set redux-form related props/functions to ANY, since we're stripping it out later on

* Revert BigNumber.js package changes

* Extend window to custom object for Perf

* Format Navigation

* Typecase keystore errors as any (since we shouldnt touch this)

* Push wallet context fix

* - find/replace value->payload in swap
- properly type swap state properties
- extract inline reducer into reducer function

* - type local storage retrieved items as generic

* - bind all RPCClient methods with fat arrow

* - reformat

* Change to enums for constants

* Change state into any

* Fix swap errors

* ensure that seconds are passed into state as integers

* Fix rest of errors

* use parseInt explicitly instead of type coercion

* Fix derivation-checker, remove flow command, add tslint command, add tslint-react, tell travis to use tslint instead of flow.

* Whoops, remove those tests.

* Remove unsupported (yet) config option.

* Fix precommit to target ts and tsx files.

* Fix some errors, ignore some silly rules.

* Revert jest to v19, use ts-jest and make all tests typescript. Fixes all but one.

* Get rid of saga tests

* Fix tslint errors
2017-09-24 19:06:28 -07:00

171 lines
4.4 KiB
TypeScript

import { toChecksumAddress } from 'ethereumjs-util';
import { RawTransaction } from 'libs/transaction';
import WalletAddressValidator from 'wallet-address-validator';
import { normalise } from './ens';
export function isValidETHAddress(address: string): boolean {
if (!address) {
return false;
}
if (address === '0x0000000000000000000000000000000000000000') {
return false;
}
return validateEtherAddress(address);
}
export function isValidBTCAddress(address: string): boolean {
return WalletAddressValidator.validate(address, 'BTC');
}
export function isValidHex(str: string): boolean {
if (typeof str !== 'string') {
return false;
}
if (str === '') {
return true;
}
str =
str.substring(0, 2) === '0x'
? str.substring(2).toUpperCase()
: str.toUpperCase();
const re = /^[0-9A-F]+$/g;
return re.test(str);
}
export function isValidENSorEtherAddress(address: string): boolean {
return isValidETHAddress(address) || isValidENSAddress(address);
}
export function isValidENSName(str: string) {
try {
return (
str.length > 6 && normalise(str) !== '' && str.substring(0, 2) !== '0x'
);
} catch (e) {
return false;
}
}
export function isValidENSAddress(address: string): boolean {
try {
const normalized = normalise(address);
const tld = normalized.substr(normalized.lastIndexOf('.') + 1);
const validTLDs = {
eth: true,
test: true,
reverse: true
};
if (validTLDs[tld]) {
return true;
}
} catch (e) {
return false;
}
return false;
}
function isChecksumAddress(address: string): boolean {
return address === toChecksumAddress(address);
}
// FIXME we probably want to do checksum checks sideways
function validateEtherAddress(address: string): boolean {
if (address.substring(0, 2) !== '0x') {
return false;
} else if (!/^(0x)?[0-9a-f]{40}$/i.test(address)) {
return false;
} else if (
/^(0x)?[0-9a-f]{40}$/.test(address) ||
/^(0x)?[0-9A-F]{40}$/.test(address)
) {
return true;
} else {
return isChecksumAddress(address);
}
}
export function isValidPrivKey(privkey: string | Buffer): boolean {
if (typeof privkey === 'string') {
return privkey.length === 64;
} else if (privkey instanceof Buffer) {
return privkey.length === 32;
} else {
return false;
}
}
export function isValidEncryptedPrivKey(privkey: string): boolean {
if (typeof privkey === 'string') {
return privkey.length === 128 || privkey.length === 132;
} else {
return false;
}
}
export function isPositiveIntegerOrZero(num: number): boolean {
if (isNaN(num) || !isFinite(num)) {
return false;
}
return num >= 0 && parseInt(num.toString(), 10) === num;
}
export function isValidRawTx(rawTx: RawTransaction): boolean {
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', lenReq: false }
];
// 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 (const prop of propReqs) {
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;
}
// Full length deterministic wallet paths from BIP44
// https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki
// normal path length is 4, ledger is the exception at 3
export function isValidPath(dPath: string) {
// TODO: use a regex to detect proper paths
const len = dPath.split("'/").length;
return len === 3 || len === 4;
}