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
78 lines
2.3 KiB
JavaScript
78 lines
2.3 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 utf8 from 'utf8';
|
|
|
|
import { isArray } from './types';
|
|
|
|
const ZERO_64 = '0000000000000000000000000000000000000000000000000000000000000000';
|
|
|
|
export function padAddress (_input) {
|
|
const input = _input.substr(0, 2) === '0x' ? _input.substr(2) : _input;
|
|
|
|
return `${ZERO_64}${input}`.slice(-64);
|
|
}
|
|
|
|
export function padBool (input) {
|
|
return `${ZERO_64}${input ? '1' : '0'}`.slice(-64);
|
|
}
|
|
|
|
export function padU32 (input) {
|
|
let bn = new BigNumber(input);
|
|
|
|
if (bn.lessThan(0)) {
|
|
bn = new BigNumber('ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff', 16)
|
|
.plus(bn).plus(1);
|
|
}
|
|
|
|
return `${ZERO_64}${bn.toString(16)}`.slice(-64);
|
|
}
|
|
|
|
function stringToBytes (input) {
|
|
if (isArray(input)) {
|
|
return input;
|
|
} else if (input.substr(0, 2) === '0x') {
|
|
const matches = input.substr(2).toLowerCase().match(/.{1,2}/g) || [];
|
|
|
|
return matches.map((value) => parseInt(value, 16));
|
|
} else {
|
|
return input.split('').map((char) => char.charCodeAt(0));
|
|
}
|
|
}
|
|
|
|
export function padBytes (_input) {
|
|
const input = stringToBytes(_input);
|
|
|
|
return `${padU32(input.length)}${padFixedBytes(input)}`;
|
|
}
|
|
|
|
export function padFixedBytes (_input) {
|
|
const input = stringToBytes(_input);
|
|
const sinput = input.map((code) => `0${code.toString(16)}`.slice(-2)).join('');
|
|
const max = Math.floor((sinput.length + 63) / 64) * 64;
|
|
|
|
return `${sinput}${ZERO_64}`.substr(0, max);
|
|
}
|
|
|
|
export function padString (input) {
|
|
const array = utf8.encode(input)
|
|
.split('')
|
|
.map((char) => char.charCodeAt(0));
|
|
|
|
return padBytes(array);
|
|
}
|