49fdd23d58
* Move secureApi to shell * Extract isTestnet test * Use mobx + subscriptions for status * Re-add status indicator * Add lerna * Move intial packages to js/packages * Move 3rdparty/{email,sms}-verification to correct location * Move package.json & README to library src * Move tests for library packages * Move views & dapps to packages * Move i18n to root * Move shell to actual src (main app) * Remove ~ references * Change ~ to root (explicit imports) * Finalise convert of ~ * Move views into dapps as well * Move dapps to packages/ * Fix references * Update css * Update test spec locations * Update tests * Case fix * Skip flakey tests * Update enzyme * Skip previously ignored tests * Allow empty api for hw * Re-add theme for embed
243 lines
5.4 KiB
JavaScript
243 lines
5.4 KiB
JavaScript
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity.
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import BigNumber from 'bignumber.js';
|
|
|
|
import { isArray, isHex, isInstanceOf, isString } from '../util/types';
|
|
import { padLeft, toHex } from '../util/format';
|
|
|
|
export function inAddress (address) {
|
|
// TODO: address validation if we have upper-lower addresses
|
|
return inHex(address);
|
|
}
|
|
|
|
export function inAddresses (addresses) {
|
|
return (addresses || []).map(inAddress);
|
|
}
|
|
|
|
export function inBlockNumber (blockNumber) {
|
|
if (isString(blockNumber)) {
|
|
switch (blockNumber) {
|
|
case 'earliest':
|
|
case 'latest':
|
|
case 'pending':
|
|
return blockNumber;
|
|
}
|
|
}
|
|
|
|
return inNumber16(blockNumber);
|
|
}
|
|
|
|
export function inData (data) {
|
|
if (data && data.length && !isHex(data)) {
|
|
data = data.split('').map((chr) => {
|
|
return `0${chr.charCodeAt(0).toString(16)}`.slice(-2);
|
|
}).join('');
|
|
}
|
|
|
|
return inHex(data);
|
|
}
|
|
|
|
export function inHash (hash) {
|
|
return inHex(hash);
|
|
}
|
|
|
|
export function inTopics (_topics) {
|
|
let topics = (_topics || [])
|
|
.filter((topic) => topic === null || topic)
|
|
.map((topic) => {
|
|
if (topic === null) {
|
|
return null;
|
|
}
|
|
|
|
if (Array.isArray(topic)) {
|
|
return inTopics(topic);
|
|
}
|
|
|
|
return padLeft(topic, 32);
|
|
});
|
|
|
|
return topics;
|
|
}
|
|
|
|
export function inFilter (options) {
|
|
if (options) {
|
|
Object.keys(options).forEach((key) => {
|
|
switch (key) {
|
|
case 'address':
|
|
if (isArray(options[key])) {
|
|
options[key] = options[key].map(inAddress);
|
|
} else {
|
|
options[key] = inAddress(options[key]);
|
|
}
|
|
break;
|
|
|
|
case 'fromBlock':
|
|
case 'toBlock':
|
|
options[key] = inBlockNumber(options[key]);
|
|
break;
|
|
|
|
case 'limit':
|
|
options[key] = inNumber10(options[key]);
|
|
break;
|
|
|
|
case 'topics':
|
|
options[key] = inTopics(options[key]);
|
|
}
|
|
});
|
|
}
|
|
|
|
return options;
|
|
}
|
|
|
|
export function inHex (str) {
|
|
return toHex(str);
|
|
}
|
|
|
|
export function inNumber10 (number) {
|
|
if (isInstanceOf(number, BigNumber)) {
|
|
return number.toNumber();
|
|
}
|
|
|
|
return (new BigNumber(number || 0)).toNumber();
|
|
}
|
|
|
|
export function inNumber16 (number) {
|
|
const bn = isInstanceOf(number, BigNumber)
|
|
? number
|
|
: (new BigNumber(number || 0));
|
|
|
|
if (!bn.isInteger()) {
|
|
throw new Error(`[format/input::inNumber16] the given number is not an integer: ${bn.toFormat()}`);
|
|
}
|
|
|
|
return inHex(bn.toString(16));
|
|
}
|
|
|
|
export function inOptionsCondition (condition) {
|
|
if (condition) {
|
|
if (condition.block) {
|
|
condition.block = condition.block ? inNumber10(condition.block) : null;
|
|
} else if (condition.time) {
|
|
condition.time = inNumber10(Math.floor(condition.time.getTime() / 1000));
|
|
}
|
|
}
|
|
|
|
return condition;
|
|
}
|
|
|
|
export function inOptions (_options = {}) {
|
|
const options = { ..._options };
|
|
|
|
Object.keys(options).forEach((key) => {
|
|
switch (key) {
|
|
case 'to':
|
|
// Don't encode the `to` option if it's empty
|
|
// (eg. contract deployments)
|
|
if (options[key]) {
|
|
options.to = inAddress(options[key]);
|
|
}
|
|
break;
|
|
|
|
case 'from':
|
|
options[key] = inAddress(options[key]);
|
|
break;
|
|
|
|
case 'condition':
|
|
options[key] = inOptionsCondition(options[key]);
|
|
break;
|
|
|
|
case 'gas':
|
|
case 'gasPrice':
|
|
options[key] = inNumber16((new BigNumber(options[key])).round());
|
|
break;
|
|
|
|
case 'value':
|
|
case 'nonce':
|
|
options[key] = inNumber16(options[key]);
|
|
break;
|
|
|
|
case 'data':
|
|
options[key] = inData(options[key]);
|
|
break;
|
|
}
|
|
});
|
|
|
|
return options;
|
|
}
|
|
|
|
export function inTraceFilter (filterObject) {
|
|
if (filterObject) {
|
|
Object.keys(filterObject).forEach((key) => {
|
|
switch (key) {
|
|
case 'fromAddress':
|
|
case 'toAddress':
|
|
filterObject[key] = [].concat(filterObject[key])
|
|
.map(address => inAddress(address));
|
|
break;
|
|
|
|
case 'toBlock':
|
|
case 'fromBlock':
|
|
filterObject[key] = inBlockNumber(filterObject[key]);
|
|
break;
|
|
}
|
|
});
|
|
}
|
|
|
|
return filterObject;
|
|
}
|
|
|
|
export function inTraceType (whatTrace) {
|
|
if (isString(whatTrace)) {
|
|
return [whatTrace];
|
|
}
|
|
|
|
return whatTrace;
|
|
}
|
|
|
|
function inDeriveType (derive) {
|
|
return derive && derive.type === 'hard' ? 'hard' : 'soft';
|
|
}
|
|
|
|
export function inDeriveHash (derive) {
|
|
const hash = derive && derive.hash ? derive.hash : derive;
|
|
const type = inDeriveType(derive);
|
|
|
|
return {
|
|
hash: inHex(hash),
|
|
type
|
|
};
|
|
}
|
|
|
|
export function inDeriveIndex (derive) {
|
|
if (!derive) {
|
|
return [];
|
|
}
|
|
|
|
if (!isArray(derive)) {
|
|
derive = [derive];
|
|
}
|
|
|
|
return derive.map(item => {
|
|
const index = inNumber10(item && item.index ? item.index : item);
|
|
|
|
return {
|
|
index,
|
|
type: inDeriveType(item)
|
|
};
|
|
});
|
|
}
|