mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 02:55:41 +00:00
8fe664c171
* Add definition file for bn.js * Remove types-bn * 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 * Clean up prop handling in UnitDisplay * Change instanceof to typeof check, change boolean of displayBalance * Fix tsc errors * Fix token row displaying wrong decimals * Fix deterministic modal token display * Handle hex and non hex strings automatically in BN conversion * Fix handling of strings and numbers for BN * add web3 fixes & comments * Display short balances on deterministic modals * add more tests, fix rounding * Add spacer to balance sidebar network name * Fix tsc error
97 lines
2.7 KiB
TypeScript
97 lines
2.7 KiB
TypeScript
import { Wei } from 'libs/units';
|
|
|
|
export function toFixedIfLarger(num: number, fixedSize: number = 6): string {
|
|
return parseFloat(num.toFixed(fixedSize)).toString();
|
|
}
|
|
|
|
export function combineAndUpper(...args: string[]) {
|
|
return args.reduce((acc, item) => acc.concat(item.toUpperCase()), '');
|
|
}
|
|
|
|
const toFixed = (num: string, digits: number = 3) => {
|
|
const [integerPart, fractionPart = ''] = num.split('.');
|
|
if (fractionPart.length === digits) {
|
|
return num;
|
|
}
|
|
if (fractionPart.length < digits) {
|
|
return `${integerPart}.${fractionPart.padEnd(digits, '0')}`;
|
|
}
|
|
|
|
let decimalPoint = integerPart.length;
|
|
|
|
const formattedFraction = fractionPart.slice(0, digits);
|
|
|
|
const integerArr = `${integerPart}${formattedFraction}`
|
|
.split('')
|
|
.map(str => +str);
|
|
|
|
let carryOver = Math.floor((+fractionPart[digits] + 5) / 10);
|
|
|
|
// grade school addition / rounding
|
|
|
|
for (let i = integerArr.length - 1; i >= 0; i--) {
|
|
const currVal = integerArr[i] + carryOver;
|
|
const newVal = currVal % 10;
|
|
carryOver = Math.floor(currVal / 10);
|
|
integerArr[i] = newVal;
|
|
if (i === 0 && carryOver > 0) {
|
|
integerArr.unshift(0);
|
|
decimalPoint++;
|
|
i++;
|
|
}
|
|
}
|
|
|
|
const strArr = integerArr.map(n => n.toString());
|
|
|
|
strArr.splice(decimalPoint, 0, '.');
|
|
|
|
if (strArr[strArr.length - 1] === '.') {
|
|
strArr.pop();
|
|
}
|
|
|
|
return strArr.join('');
|
|
};
|
|
|
|
// Use in place of angular number filter
|
|
export function formatNumber(num: string, digits?: number): string {
|
|
const parts = toFixed(num, digits).split('.');
|
|
|
|
// Remove trailing zeroes on decimal (If there is a decimal)
|
|
if (parts[1]) {
|
|
parts[1] = parts[1].replace(/0+$/, '');
|
|
|
|
// If there's nothing left, remove decimal altogether
|
|
if (!parts[1]) {
|
|
parts.pop();
|
|
}
|
|
}
|
|
|
|
// Commafy the whole numbers
|
|
parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',');
|
|
|
|
return parts.join('.');
|
|
}
|
|
|
|
// TODO: Comment up this function to make it clear what's happening here.
|
|
export function formatGasLimit(limit: Wei, transactionUnit: string = 'ether') {
|
|
let limitStr = limit.toString();
|
|
|
|
// I'm guessing this is some known off-by-one-error from the node?
|
|
// 21k is only the limit for ethereum though, so make sure they're
|
|
// sending ether if we're going to fix it for them.
|
|
if (limitStr === '21001' && transactionUnit === 'ether') {
|
|
limitStr = '21000';
|
|
}
|
|
|
|
// If they've exceeded the gas limit per block, make it -1
|
|
// TODO: Explain why not cap at limit?
|
|
// TODO: Make this dynamic, potentially. Would require promisifying this fn.
|
|
// TODO: Figure out if this is only true for ether. Do other currencies have
|
|
// this limit?
|
|
if (limit.gten(4000000)) {
|
|
limitStr = '-1';
|
|
}
|
|
|
|
return limitStr;
|
|
}
|