2017-11-30 20:16:30 +00:00
|
|
|
import { toChecksumAddress, isValidPrivate } from 'ethereumjs-util';
|
2017-09-25 02:06:28 +00:00
|
|
|
import { RawTransaction } from 'libs/transaction';
|
2017-11-30 20:16:30 +00:00
|
|
|
import { stripHexPrefix } from 'libs/values';
|
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';
|
2017-11-30 05:35:17 +00:00
|
|
|
import { Validator } from 'jsonschema';
|
|
|
|
import { JsonRpcResponse } from './nodes/rpc/types';
|
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;
|
|
|
|
}
|
2017-09-25 02:06:28 +00:00
|
|
|
if (address === '0x0000000000000000000000000000000000000000') {
|
|
|
|
return false;
|
|
|
|
}
|
2017-07-02 05:49:06 +00:00
|
|
|
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;
|
|
|
|
}
|
2017-09-25 02:06:28 +00:00
|
|
|
if (str === '') {
|
|
|
|
return true;
|
|
|
|
}
|
2017-07-28 00:31:59 +00:00
|
|
|
str =
|
2017-09-25 02:06:28 +00:00
|
|
|
str.substring(0, 2) === '0x'
|
2017-07-28 00:31:59 +00:00
|
|
|
? str.substring(2).toUpperCase()
|
|
|
|
: str.toUpperCase();
|
2017-10-17 04:01:28 +00:00
|
|
|
const re = /^[0-9A-F]*$/g; // Match 0 -> unlimited times, 0 being "0x" case
|
2017-07-02 05:49:06 +00:00
|
|
|
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 (
|
2017-09-25 02:06:28 +00:00
|
|
|
str.length > 6 && normalise(str) !== '' && str.substring(0, 2) !== '0x'
|
2017-07-16 21:02:13 +00:00
|
|
|
);
|
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);
|
2017-09-25 02:06:28 +00:00
|
|
|
const tld = normalized.substr(normalized.lastIndexOf('.') + 1);
|
|
|
|
const validTLDs = {
|
2017-07-02 05:49:06 +00:00
|
|
|
eth: true,
|
|
|
|
test: true,
|
|
|
|
reverse: true
|
|
|
|
};
|
2017-09-25 02:06:28 +00:00
|
|
|
if (validTLDs[tld]) {
|
|
|
|
return true;
|
|
|
|
}
|
2017-07-02 05:49:06 +00:00
|
|
|
} 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-09-25 02:06:28 +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-09-25 02:06:28 +00:00
|
|
|
if (address.substring(0, 2) !== '0x') {
|
|
|
|
return false;
|
|
|
|
} else if (!/^(0x)?[0-9a-f]{40}$/i.test(address)) {
|
|
|
|
return false;
|
|
|
|
} else if (
|
2017-07-16 21:02:13 +00:00
|
|
|
/^(0x)?[0-9a-f]{40}$/.test(address) ||
|
|
|
|
/^(0x)?[0-9A-F]{40}$/.test(address)
|
2017-09-25 02:06:28 +00:00
|
|
|
) {
|
2017-07-16 21:02:13 +00:00
|
|
|
return true;
|
2017-09-25 02:06:28 +00:00
|
|
|
} else {
|
|
|
|
return isChecksumAddress(address);
|
|
|
|
}
|
2017-06-26 22:27:55 +00:00
|
|
|
}
|
2017-06-29 23:03:11 +00:00
|
|
|
|
2017-08-20 20:28:47 +00:00
|
|
|
export function isValidPrivKey(privkey: string | Buffer): boolean {
|
|
|
|
if (typeof privkey === 'string') {
|
2017-11-30 20:16:30 +00:00
|
|
|
const strippedKey = stripHexPrefix(privkey);
|
|
|
|
const initialCheck = strippedKey.length === 64;
|
|
|
|
if (initialCheck) {
|
|
|
|
const keyBuffer = Buffer.from(strippedKey, 'hex');
|
|
|
|
return isValidPrivate(keyBuffer);
|
|
|
|
}
|
|
|
|
return false;
|
2017-08-20 20:28:47 +00:00
|
|
|
} else if (privkey instanceof Buffer) {
|
2017-11-30 20:16:30 +00:00
|
|
|
return privkey.length === 32 && isValidPrivate(privkey);
|
2017-08-20 20:28:47 +00:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isValidEncryptedPrivKey(privkey: string): boolean {
|
|
|
|
if (typeof privkey === 'string') {
|
|
|
|
return privkey.length === 128 || privkey.length === 132;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2017-06-29 23:03:11 +00:00
|
|
|
}
|
2017-07-13 21:02:39 +00:00
|
|
|
|
2017-09-25 02:06:28 +00:00
|
|
|
export function isPositiveIntegerOrZero(num: number): boolean {
|
|
|
|
if (isNaN(num) || !isFinite(num)) {
|
2017-07-13 21:02:39 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-09-25 02:06:28 +00:00
|
|
|
return num >= 0 && parseInt(num.toString(), 10) === num;
|
2017-07-13 21:02:39 +00:00
|
|
|
}
|
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 },
|
2017-09-25 02:06:28 +00:00
|
|
|
{ name: 'chainId', type: 'number', lenReq: false }
|
2017-08-08 03:25:23 +00:00
|
|
|
];
|
|
|
|
|
2017-09-25 02:06:28 +00:00
|
|
|
// 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
|
2017-08-08 03:25:23 +00:00
|
|
|
|
2017-09-25 02:06:28 +00:00
|
|
|
for (const prop of propReqs) {
|
2017-08-08 03:25:23 +00:00
|
|
|
const value = rawTx[prop.name];
|
|
|
|
|
2017-09-25 02:06:28 +00:00
|
|
|
if (!rawTx.hasOwnProperty(prop.name)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (typeof value !== prop.type) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-08-08 03:25:23 +00:00
|
|
|
if (prop.type === 'string') {
|
2017-09-25 02:06:28 +00:00
|
|
|
if (prop.lenReq && value.length === 0) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-08-08 03:25:23 +00:00
|
|
|
if (value.length && value.substring(0, 2) !== '0x') {
|
|
|
|
return false;
|
|
|
|
}
|
2017-09-25 02:06:28 +00:00
|
|
|
if (!isValidHex(value)) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-08-08 03:25:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-25 02:06:28 +00:00
|
|
|
if (Object.keys(rawTx).length !== propReqs.length) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-08-08 03:25:23 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2017-08-28 17:43:57 +00:00
|
|
|
|
2017-09-15 19:29:38 +00:00
|
|
|
// 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
|
2017-08-28 17:43:57 +00:00
|
|
|
export function isValidPath(dPath: string) {
|
2017-09-25 02:06:28 +00:00
|
|
|
// TODO: use a regex to detect proper paths
|
2017-09-15 19:29:38 +00:00
|
|
|
const len = dPath.split("'/").length;
|
|
|
|
return len === 3 || len === 4;
|
2017-08-28 17:43:57 +00:00
|
|
|
}
|
2017-10-17 04:01:28 +00:00
|
|
|
|
|
|
|
export const isValidValue = (value: string) =>
|
|
|
|
!!(value && isFinite(parseFloat(value)) && parseFloat(value) >= 0);
|
|
|
|
|
|
|
|
export const isValidGasPrice = (gasLimit: string) =>
|
|
|
|
!!(gasLimit && isFinite(parseFloat(gasLimit)) && parseFloat(gasLimit) > 0);
|
|
|
|
|
|
|
|
export const isValidByteCode = (byteCode: string) =>
|
|
|
|
byteCode && byteCode.length > 0 && byteCode.length % 2 === 0;
|
|
|
|
|
|
|
|
export const isValidAbiJson = (abiJson: string) =>
|
|
|
|
abiJson && abiJson.startsWith('[') && abiJson.endsWith(']');
|
2017-11-30 05:35:17 +00:00
|
|
|
|
|
|
|
// JSONSchema Validations for Rpc responses
|
|
|
|
const v = new Validator();
|
|
|
|
|
|
|
|
export const schema = {
|
|
|
|
RpcNode: {
|
|
|
|
type: 'object',
|
|
|
|
additionalProperties: false,
|
|
|
|
properties: {
|
|
|
|
jsonrpc: { type: 'string' },
|
|
|
|
id: { oneOf: [{ type: 'string' }, { type: 'integer' }] },
|
2017-12-01 16:32:29 +00:00
|
|
|
result: { oneOf: [{ type: 'string' }, { type: 'array' }] },
|
2017-11-30 05:35:17 +00:00
|
|
|
status: { type: 'string' },
|
|
|
|
message: { type: 'string', maxLength: 2 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function isValidResult(response: JsonRpcResponse, schemaFormat): boolean {
|
|
|
|
return v.validate(response, schemaFormat).valid;
|
|
|
|
}
|
|
|
|
|
|
|
|
function formatErrors(response: JsonRpcResponse, apiType: string) {
|
|
|
|
if (response.error) {
|
|
|
|
return `${response.error.message} ${response.error.data}`;
|
|
|
|
}
|
|
|
|
return `Invalid ${apiType} Error`;
|
|
|
|
}
|
|
|
|
|
|
|
|
const isValidEthCall = (response: JsonRpcResponse, schemaType) => (
|
|
|
|
apiName,
|
|
|
|
cb?
|
|
|
|
) => {
|
|
|
|
if (!isValidResult(response, schemaType)) {
|
|
|
|
if (cb) {
|
|
|
|
return cb(response);
|
|
|
|
}
|
|
|
|
throw new Error(formatErrors(response, apiName));
|
|
|
|
}
|
|
|
|
return response;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const isValidGetBalance = (response: JsonRpcResponse) =>
|
|
|
|
isValidEthCall(response, schema.RpcNode)('Get Balance');
|
|
|
|
|
|
|
|
export const isValidEstimateGas = (response: JsonRpcResponse) =>
|
|
|
|
isValidEthCall(response, schema.RpcNode)('Estimate Gas');
|
|
|
|
|
|
|
|
export const isValidCallRequest = (response: JsonRpcResponse) =>
|
|
|
|
isValidEthCall(response, schema.RpcNode)('Call Request');
|
|
|
|
|
|
|
|
export const isValidTokenBalance = (response: JsonRpcResponse) =>
|
|
|
|
isValidEthCall(response, schema.RpcNode)('Token Balance', () => ({
|
|
|
|
result: 'Failed'
|
|
|
|
}));
|
|
|
|
|
|
|
|
export const isValidTransactionCount = (response: JsonRpcResponse) =>
|
|
|
|
isValidEthCall(response, schema.RpcNode)('Transaction Count');
|
|
|
|
|
|
|
|
export const isValidCurrentBlock = (response: JsonRpcResponse) =>
|
|
|
|
isValidEthCall(response, schema.RpcNode)('Current Block');
|
|
|
|
|
|
|
|
export const isValidRawTxApi = (response: JsonRpcResponse) =>
|
|
|
|
isValidEthCall(response, schema.RpcNode)('Raw Tx');
|
2017-12-01 16:32:29 +00:00
|
|
|
|
|
|
|
export const isValidSendTransaction = (response: JsonRpcResponse) =>
|
|
|
|
isValidEthCall(response, schema.RpcNode)('Send Transaction');
|
|
|
|
|
|
|
|
export const isValidSignMessage = (response: JsonRpcResponse) =>
|
|
|
|
isValidEthCall(response, schema.RpcNode)('Sign Message');
|
|
|
|
|
|
|
|
export const isValidGetAccounts = (response: JsonRpcResponse) =>
|
|
|
|
isValidEthCall(response, schema.RpcNode)('Get Accounts');
|
|
|
|
|
|
|
|
export const isValidGetNetVersion = (response: JsonRpcResponse) =>
|
|
|
|
isValidEthCall(response, schema.RpcNode)('Net Version');
|