mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 02:55:41 +00:00
67b2e6491c
* Refactor BaseNode to be an interface INode * Initial contract commit * Remove redundant fallback ABI function * First working iteration of Contract generator to be used in ENS branch * Hide abi to clean up logging output * Strip 0x prefix from output decode * Handle unnamed output params * Implement ability to supply output mappings to ABI functions * Fix null case in outputMapping * Add flow typing * Add .call method to functions * Partial commit for type refactor * Temp contract type fix -- waiting for NPM modularization * Remove empty files * Cleanup contract * Add call request to node interface * Fix output mapping types * Revert destructuring overboard * Add sendCallRequest to rpcNode class and add typing * Use enum for selecting ABI methods * Add transaction capability to contracts * Cleanup privaite/public members * Remove broadcasting step from a contract transaction * Cleanup uneeded types * Refactor ens-base to typescript and add typings for ENS smart contracts * Migrate ens-name-search to TS * Add IResolveDomainRequest * Fix rest of TSC errors * Add definition file for bn.js * Remove types-bn * Fix some typings * make isBN a static property * progress commit -- swap out bignumber.js for bn.js * Swap out bignumber for bn in vendor * Change modn to number return * Start to strip out units lib for a string manipulation based lib * Convert codebase to only base units * Get rid of useless component * Handle only wei in values * Use unit conversion in sidebar * Automatically strip hex prefix, and handle decimal edge case * Handle base 16 wei in transactions * Make a render callback component for dealing with unit conversion * Switch contracts to use bn.js, and get transaction values from signedTx instead of state * Get send transaction working with bn.js * Remove redundant hex stripping, return base value of tokens * Cleanup unit file * Re-implement toFixed for strings * Use formatNumber in codebase * Cleanup code * Undo package test changes * Update snapshot and remove console logs * Use TokenValue / Wei more consistently where applicable * Add typing to deterministicWallets, fix confirmation modal, make UnitDisplay more flexible * Split different ENS modes into their own components * Fix Abi typedef * Remove redundant moment type package * Add Aux helper component * Split out resolve components * Make 'to' parameter optional * Change import type * Change typing to be base domain request * Split handling of resolving into object handler * Fix countdown component * Adjust element spacing * Implement reveal search functionality * Add unit display for highest bidder * Fill out forbidden/NYA modes * ENS wallet component skeleton * Clean up prop handling in UnitDisplay * Change instanceof to typeof check, change boolean of displayBalance * Add ENS wallet component * Cleanup spacing * Convert ConfModal for bidding in ENS * Make ui component for placing bids * Fix destructure in placeBid * Pass through entire wallet * Remove text center * Display inline notification ENS isValid & add some ENS tests * Add export of Aux * Reformat with prettier * progress... * Add ENSUnlockLayout * Add RevealBid component * organize NameResolve components * Merge ENS with transaction-refactor changes * Fix address resolution * Update styles * convert ens name to lowercase before checking * Add overflow-y:scroll to table * update ens snapshots & tests * cast 'undefined' state argument as any for testing * clean up components * Connect unitconverter to redux state * remove unnecessary type assertion * fix spinner size * remove old bidmodal * validate bidmask before opening modal * progress... * Update styles * Add saga / actions for placing a bid * Update types & clean up dead code * Delete old test * Dispatch PlaceBidRequested acitons * Progress commit -- get ENS bidding ready for tx generation via sagas * Seperate ENS action creators and types * Add reducer & actions for ENS fields * Add preliminary sagas for bid mask and bid value * Initial commit * Add loading indicator * Remove some bidding components * Revert bidding files * Remove more bidding code * Remove rest of bidding code * Fix ENS error message * Revert value saga changes * Remove error param from setting 'To' field * Fix existing ENS test * Cleanup address resolution, remove dead code * Remove error messages from unimplemented ENS * Fix last character being not set bug * Remove error state from Meta * Rename isGenesisAddress to isCreationAddress
226 lines
6.9 KiB
TypeScript
226 lines
6.9 KiB
TypeScript
import { toChecksumAddress, isValidPrivate } from 'ethereumjs-util';
|
|
import { stripHexPrefix } from 'libs/values';
|
|
import WalletAddressValidator from 'wallet-address-validator';
|
|
import { normalise } from './ens';
|
|
import { Validator } from 'jsonschema';
|
|
import { JsonRpcResponse } from './nodes/rpc/types';
|
|
import { isPositiveInteger } from 'utils/helpers';
|
|
|
|
// FIXME we probably want to do checksum checks sideways
|
|
export function isValidETHAddress(address: string): boolean {
|
|
if (address === '0x0000000000000000000000000000000000000000') {
|
|
return false;
|
|
}
|
|
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 const isCreationAddress = (address: string): boolean =>
|
|
address === '0x0' || address === '0x0000000000000000000000000000000000000000';
|
|
|
|
export function isValidBTCAddress(address: string): boolean {
|
|
return WalletAddressValidator.validate(address, 'BTC');
|
|
}
|
|
|
|
export function isValidHex(str: string): boolean {
|
|
if (str === '') {
|
|
return true;
|
|
}
|
|
str = str.substring(0, 2) === '0x' ? str.substring(2).toUpperCase() : str.toUpperCase();
|
|
const re = /^[0-9A-F]*$/g; // Match 0 -> unlimited times, 0 being "0x" case
|
|
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 as keyof typeof validTLDs]) {
|
|
return true;
|
|
}
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
function isChecksumAddress(address: string): boolean {
|
|
return address === toChecksumAddress(address);
|
|
}
|
|
|
|
export function isValidPrivKey(privkey: string | Buffer): boolean {
|
|
if (typeof privkey === 'string') {
|
|
const strippedKey = stripHexPrefix(privkey);
|
|
const initialCheck = strippedKey.length === 64;
|
|
if (initialCheck) {
|
|
const keyBuffer = Buffer.from(strippedKey, 'hex');
|
|
return isValidPrivate(keyBuffer);
|
|
}
|
|
return false;
|
|
} else if (privkey instanceof Buffer) {
|
|
return privkey.length === 32 && isValidPrivate(privkey);
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
export function isValidEncryptedPrivKey(privkey: string): boolean {
|
|
if (typeof privkey === 'string') {
|
|
return privkey.length === 128 || privkey.length === 132;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
export const validNumber = (num: number) => isFinite(num) && num > 0;
|
|
|
|
export const validDecimal = (input: string, decimal: number) => {
|
|
const arr = input.split('.');
|
|
const fractionPortion = arr[1];
|
|
if (!fractionPortion || fractionPortion.length === 0) {
|
|
return true;
|
|
}
|
|
const decimalLength = fractionPortion.length;
|
|
return decimalLength <= decimal;
|
|
};
|
|
|
|
export function isPositiveIntegerOrZero(num: number): boolean {
|
|
if (isNaN(num) || !isFinite(num)) {
|
|
return false;
|
|
}
|
|
return num >= 0 && parseInt(num.toString(), 10) === num;
|
|
}
|
|
|
|
// 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;
|
|
}
|
|
|
|
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(']');
|
|
|
|
// 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' }] },
|
|
result: { oneOf: [{ type: 'string' }, { type: 'array' }] },
|
|
status: { type: 'string' },
|
|
message: { type: 'string', maxLength: 2 }
|
|
}
|
|
}
|
|
};
|
|
|
|
export const isValidNonce = (value: string): boolean => {
|
|
let valid;
|
|
if (value === '0') {
|
|
valid = true;
|
|
} else if (!value) {
|
|
valid = false;
|
|
} else {
|
|
valid = isPositiveInteger(+value);
|
|
}
|
|
return valid;
|
|
};
|
|
|
|
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: typeof schema.RpcNode) => (
|
|
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');
|
|
|
|
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');
|