2022-01-07 16:57:33 +01:00
|
|
|
/**
|
|
|
|
* Currency Conversion Utility
|
2020-11-03 00:41:28 +01:00
|
|
|
* This utility function can be used for converting currency related values within metamask.
|
|
|
|
* The caller should be able to pass it a value, along with information about the value's
|
|
|
|
* numeric base, denomination and currency, and the desired numeric base, denomination and
|
|
|
|
* currency. It should return a single value.
|
|
|
|
*
|
|
|
|
* @param {(number | string | BN)} value - The value to convert.
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} [options] - Options to specify details of the conversion
|
2020-11-10 18:30:41 +01:00
|
|
|
* @param {string} [options.fromCurrency = 'ETH' | 'USD'] - The currency of the passed value
|
|
|
|
* @param {string} [options.toCurrency = 'ETH' | 'USD'] - The desired currency of the result
|
|
|
|
* @param {string} [options.fromNumericBase = 'hex' | 'dec' | 'BN'] - The numeric basic of the passed value.
|
|
|
|
* @param {string} [options.toNumericBase = 'hex' | 'dec' | 'BN'] - The desired numeric basic of the result.
|
|
|
|
* @param {string} [options.fromDenomination = 'WEI'] - The denomination of the passed value
|
|
|
|
* @param {string} [options.numberOfDecimals] - The desired number of decimals in the result
|
|
|
|
* @param {string} [options.roundDown] - The desired number of decimals to round down to
|
|
|
|
* @param {number} [options.conversionRate] - The rate to use to make the fromCurrency -> toCurrency conversion
|
2020-11-03 00:41:28 +01:00
|
|
|
* @returns {(number | string | BN)}
|
|
|
|
*
|
|
|
|
* The utility passes value along with the options as a single object to the `converter` function.
|
|
|
|
* `converter` conditional modifies the supplied `value` property, depending
|
|
|
|
* on the accompanying options.
|
|
|
|
*/
|
2017-09-12 22:38:02 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
import BigNumber from 'bignumber.js';
|
2020-01-09 04:34:58 +01:00
|
|
|
|
2023-01-20 18:04:37 +01:00
|
|
|
import { addHexPrefix, BN } from 'ethereumjs-util';
|
|
|
|
import { ETH, WEI } from '../../ui/helpers/constants/common';
|
2022-09-22 17:04:24 +02:00
|
|
|
|
|
|
|
import { stripHexPrefix } from './hexstring-utils';
|
2017-09-12 22:38:02 +02:00
|
|
|
|
|
|
|
// Big Number Constants
|
2021-02-04 19:15:23 +01:00
|
|
|
const BIG_NUMBER_WEI_MULTIPLIER = new BigNumber('1000000000000000000');
|
|
|
|
const BIG_NUMBER_GWEI_MULTIPLIER = new BigNumber('1000000000');
|
|
|
|
const BIG_NUMBER_ETH_MULTIPLIER = new BigNumber('1');
|
2017-09-12 22:38:02 +02:00
|
|
|
|
|
|
|
// Setter Maps
|
|
|
|
const toBigNumber = {
|
2020-02-15 21:34:12 +01:00
|
|
|
hex: (n) => new BigNumber(stripHexPrefix(n), 16),
|
|
|
|
dec: (n) => new BigNumber(String(n), 10),
|
|
|
|
BN: (n) => new BigNumber(n.toString(16), 16),
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2017-09-12 22:38:02 +02:00
|
|
|
const toNormalizedDenomination = {
|
2020-02-15 21:34:12 +01:00
|
|
|
WEI: (bigNumber) => bigNumber.div(BIG_NUMBER_WEI_MULTIPLIER),
|
|
|
|
GWEI: (bigNumber) => bigNumber.div(BIG_NUMBER_GWEI_MULTIPLIER),
|
|
|
|
ETH: (bigNumber) => bigNumber.div(BIG_NUMBER_ETH_MULTIPLIER),
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2017-09-14 04:20:13 +02:00
|
|
|
const toSpecifiedDenomination = {
|
2020-02-15 21:34:12 +01:00
|
|
|
WEI: (bigNumber) => bigNumber.times(BIG_NUMBER_WEI_MULTIPLIER).round(),
|
|
|
|
GWEI: (bigNumber) => bigNumber.times(BIG_NUMBER_GWEI_MULTIPLIER).round(9),
|
|
|
|
ETH: (bigNumber) => bigNumber.times(BIG_NUMBER_ETH_MULTIPLIER).round(9),
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2017-09-12 22:38:02 +02:00
|
|
|
const baseChange = {
|
2020-02-15 21:34:12 +01:00
|
|
|
hex: (n) => n.toString(16),
|
2020-11-03 00:41:28 +01:00
|
|
|
dec: (n) => new BigNumber(n).toString(10),
|
2020-02-15 21:34:12 +01:00
|
|
|
BN: (n) => new BN(n.toString(16)),
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2017-09-12 22:38:02 +02:00
|
|
|
|
2020-11-13 07:08:18 +01:00
|
|
|
// Utility function for checking base types
|
|
|
|
const isValidBase = (base) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
return Number.isInteger(base) && base > 1;
|
|
|
|
};
|
2020-11-13 07:08:18 +01:00
|
|
|
|
2020-07-08 22:17:53 +02:00
|
|
|
/**
|
|
|
|
* Defines the base type of numeric value
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2020-07-08 22:17:53 +02:00
|
|
|
* @typedef {('hex' | 'dec' | 'BN')} NumericBase
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines which type of denomination a value is in
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2020-07-08 22:17:53 +02:00
|
|
|
* @typedef {('WEI' | 'GWEI' | 'ETH')} EthDenomination
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Utility method to convert a value between denominations, formats and currencies.
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} input
|
2020-07-08 22:17:53 +02:00
|
|
|
* @param {string | BigNumber} input.value
|
|
|
|
* @param {NumericBase} input.fromNumericBase
|
|
|
|
* @param {EthDenomination} [input.fromDenomination]
|
|
|
|
* @param {string} [input.fromCurrency]
|
|
|
|
* @param {NumericBase} input.toNumericBase
|
|
|
|
* @param {EthDenomination} [input.toDenomination]
|
|
|
|
* @param {string} [input.toCurrency]
|
|
|
|
* @param {number} [input.numberOfDecimals]
|
|
|
|
* @param {number} [input.conversionRate]
|
|
|
|
* @param {boolean} [input.invertConversionRate]
|
|
|
|
* @param {string} [input.roundDown]
|
|
|
|
*/
|
|
|
|
const converter = ({
|
|
|
|
value,
|
|
|
|
fromNumericBase,
|
|
|
|
fromDenomination,
|
|
|
|
fromCurrency,
|
|
|
|
toNumericBase,
|
|
|
|
toDenomination,
|
|
|
|
toCurrency,
|
|
|
|
numberOfDecimals,
|
|
|
|
conversionRate,
|
|
|
|
invertConversionRate,
|
|
|
|
roundDown,
|
|
|
|
}) => {
|
2020-11-03 00:41:28 +01:00
|
|
|
let convertedValue = fromNumericBase
|
|
|
|
? toBigNumber[fromNumericBase](value)
|
2021-02-04 19:15:23 +01:00
|
|
|
: value;
|
2020-07-08 22:17:53 +02:00
|
|
|
|
|
|
|
if (fromDenomination) {
|
2021-02-04 19:15:23 +01:00
|
|
|
convertedValue = toNormalizedDenomination[fromDenomination](convertedValue);
|
2020-07-08 22:17:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fromCurrency !== toCurrency) {
|
2020-08-13 01:02:44 +02:00
|
|
|
if (conversionRate === null || conversionRate === undefined) {
|
2020-11-03 00:41:28 +01:00
|
|
|
throw new Error(
|
|
|
|
`Converting from ${fromCurrency} to ${toCurrency} requires a conversionRate, but one was not provided`,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-07-08 22:17:53 +02:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
let rate = toBigNumber.dec(conversionRate);
|
2020-07-08 22:17:53 +02:00
|
|
|
if (invertConversionRate) {
|
2021-02-04 19:15:23 +01:00
|
|
|
rate = new BigNumber(1.0).div(conversionRate);
|
2020-07-08 22:17:53 +02:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
convertedValue = convertedValue.times(rate);
|
2020-07-08 22:17:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (toDenomination) {
|
2021-02-04 19:15:23 +01:00
|
|
|
convertedValue = toSpecifiedDenomination[toDenomination](convertedValue);
|
2020-07-08 22:17:53 +02:00
|
|
|
}
|
|
|
|
|
2022-01-06 03:47:26 +01:00
|
|
|
if (numberOfDecimals !== undefined && numberOfDecimals !== null) {
|
2020-11-03 00:41:28 +01:00
|
|
|
convertedValue = convertedValue.round(
|
|
|
|
numberOfDecimals,
|
|
|
|
BigNumber.ROUND_HALF_DOWN,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-07-08 22:17:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (roundDown) {
|
2021-02-04 19:15:23 +01:00
|
|
|
convertedValue = convertedValue.round(roundDown, BigNumber.ROUND_DOWN);
|
2020-07-08 22:17:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (toNumericBase) {
|
2021-02-04 19:15:23 +01:00
|
|
|
convertedValue = baseChange[toNumericBase](convertedValue);
|
2020-07-08 22:17:53 +02:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
return convertedValue;
|
|
|
|
};
|
2017-09-12 07:19:05 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const conversionUtil = (
|
|
|
|
value,
|
|
|
|
{
|
|
|
|
fromCurrency = null,
|
|
|
|
toCurrency = fromCurrency,
|
|
|
|
fromNumericBase,
|
|
|
|
toNumericBase,
|
|
|
|
fromDenomination,
|
|
|
|
toDenomination,
|
|
|
|
numberOfDecimals,
|
|
|
|
conversionRate,
|
|
|
|
invertConversionRate,
|
|
|
|
},
|
2021-06-24 01:28:49 +02:00
|
|
|
) => {
|
|
|
|
if (fromCurrency !== toCurrency && !conversionRate) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return converter({
|
2020-11-03 00:41:28 +01:00
|
|
|
fromCurrency,
|
|
|
|
toCurrency,
|
|
|
|
fromNumericBase,
|
|
|
|
toNumericBase,
|
|
|
|
fromDenomination,
|
|
|
|
toDenomination,
|
|
|
|
numberOfDecimals,
|
|
|
|
conversionRate,
|
|
|
|
invertConversionRate,
|
|
|
|
value: value || '0',
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2021-06-24 01:28:49 +02:00
|
|
|
};
|
2017-09-12 07:19:05 +02:00
|
|
|
|
2020-10-09 22:01:15 +02:00
|
|
|
const getBigNumber = (value, base) => {
|
2020-11-13 07:08:18 +01:00
|
|
|
if (!isValidBase(base)) {
|
2021-12-08 16:57:13 +01:00
|
|
|
throw new Error('Must specify valid base');
|
2020-11-13 07:08:18 +01:00
|
|
|
}
|
|
|
|
|
2020-10-09 22:01:15 +02:00
|
|
|
// We don't include 'number' here, because BigNumber will throw if passed
|
|
|
|
// a number primitive it considers unsafe.
|
2020-11-03 00:41:28 +01:00
|
|
|
if (typeof value === 'string' || value instanceof BigNumber) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return new BigNumber(value, base);
|
2020-10-09 22:01:15 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return new BigNumber(String(value), base);
|
|
|
|
};
|
2020-10-09 22:01:15 +02:00
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
const addCurrencies = (a, b, options = {}) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { aBase, bBase, ...conversionOptions } = options;
|
2020-11-13 07:08:18 +01:00
|
|
|
|
|
|
|
if (!isValidBase(aBase) || !isValidBase(bBase)) {
|
2021-02-04 19:15:23 +01:00
|
|
|
throw new Error('Must specify valid aBase and bBase');
|
2020-11-13 07:08:18 +01:00
|
|
|
}
|
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const value = getBigNumber(a, aBase).add(getBigNumber(b, bBase));
|
2017-10-19 20:23:02 +02:00
|
|
|
|
2017-09-20 15:56:20 +02:00
|
|
|
return converter({
|
|
|
|
value,
|
2017-10-19 20:23:02 +02:00
|
|
|
...conversionOptions,
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
};
|
2017-09-20 15:56:20 +02:00
|
|
|
|
2017-10-26 18:43:12 +02:00
|
|
|
const subtractCurrencies = (a, b, options = {}) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { aBase, bBase, ...conversionOptions } = options;
|
2020-11-13 07:08:18 +01:00
|
|
|
|
|
|
|
if (!isValidBase(aBase) || !isValidBase(bBase)) {
|
2021-02-04 19:15:23 +01:00
|
|
|
throw new Error('Must specify valid aBase and bBase');
|
2020-11-13 07:08:18 +01:00
|
|
|
}
|
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const value = getBigNumber(a, aBase).minus(getBigNumber(b, bBase));
|
2017-10-26 18:43:12 +02:00
|
|
|
|
|
|
|
return converter({
|
|
|
|
value,
|
|
|
|
...conversionOptions,
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
};
|
2017-10-26 18:43:12 +02:00
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
const multiplyCurrencies = (a, b, options = {}) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { multiplicandBase, multiplierBase, ...conversionOptions } = options;
|
2017-10-18 20:08:53 +02:00
|
|
|
|
2020-11-13 07:08:18 +01:00
|
|
|
if (!isValidBase(multiplicandBase) || !isValidBase(multiplierBase)) {
|
2021-02-04 19:15:23 +01:00
|
|
|
throw new Error('Must specify valid multiplicandBase and multiplierBase');
|
2020-11-13 07:08:18 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const value = getBigNumber(a, multiplicandBase).times(
|
|
|
|
getBigNumber(b, multiplierBase),
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2017-10-18 20:08:53 +02:00
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
return converter({
|
|
|
|
value,
|
2017-11-02 13:15:59 +01:00
|
|
|
...conversionOptions,
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
|
|
|
};
|
2017-10-13 22:19:22 +02:00
|
|
|
|
2021-11-29 18:40:48 +01:00
|
|
|
const divideCurrencies = (a, b, options = {}) => {
|
|
|
|
const { dividendBase, divisorBase, ...conversionOptions } = options;
|
|
|
|
|
|
|
|
if (!isValidBase(dividendBase) || !isValidBase(divisorBase)) {
|
|
|
|
throw new Error('Must specify valid dividendBase and divisorBase');
|
|
|
|
}
|
|
|
|
|
|
|
|
const value = getBigNumber(a, dividendBase).div(getBigNumber(b, divisorBase));
|
|
|
|
|
|
|
|
return converter({
|
|
|
|
value,
|
|
|
|
...conversionOptions,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const conversionGreaterThan = ({ ...firstProps }, { ...secondProps }) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const firstValue = converter({ ...firstProps });
|
|
|
|
const secondValue = converter({ ...secondProps });
|
2017-11-09 23:23:10 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return firstValue.gt(secondValue);
|
|
|
|
};
|
2017-09-20 19:37:12 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const conversionLessThan = ({ ...firstProps }, { ...secondProps }) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const firstValue = converter({ ...firstProps });
|
|
|
|
const secondValue = converter({ ...secondProps });
|
2018-06-15 03:02:03 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return firstValue.lt(secondValue);
|
|
|
|
};
|
2018-06-15 03:02:03 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const conversionMax = ({ ...firstProps }, { ...secondProps }) => {
|
2018-03-09 04:49:26 +01:00
|
|
|
const firstIsGreater = conversionGreaterThan(
|
|
|
|
{ ...firstProps },
|
2020-07-14 17:20:41 +02:00
|
|
|
{ ...secondProps },
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2018-03-09 04:49:26 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return firstIsGreater ? firstProps.value : secondProps.value;
|
|
|
|
};
|
2018-03-09 04:49:26 +01:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const conversionGTE = ({ ...firstProps }, { ...secondProps }) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const firstValue = converter({ ...firstProps });
|
|
|
|
const secondValue = converter({ ...secondProps });
|
|
|
|
return firstValue.greaterThanOrEqualTo(secondValue);
|
|
|
|
};
|
2017-10-26 18:06:34 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const conversionLTE = ({ ...firstProps }, { ...secondProps }) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const firstValue = converter({ ...firstProps });
|
|
|
|
const secondValue = converter({ ...secondProps });
|
|
|
|
return firstValue.lessThanOrEqualTo(secondValue);
|
|
|
|
};
|
2017-10-26 18:06:34 +02:00
|
|
|
|
|
|
|
const toNegative = (n, options = {}) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
return multiplyCurrencies(n, -1, options);
|
|
|
|
};
|
2017-10-26 18:06:34 +02:00
|
|
|
|
2021-07-31 02:45:18 +02:00
|
|
|
function decGWEIToHexWEI(decGWEI) {
|
2021-07-30 13:35:30 +02:00
|
|
|
return conversionUtil(decGWEI, {
|
|
|
|
fromNumericBase: 'dec',
|
|
|
|
toNumericBase: 'hex',
|
|
|
|
fromDenomination: 'GWEI',
|
|
|
|
toDenomination: 'WEI',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-01-20 18:04:37 +01:00
|
|
|
export function subtractHexes(aHexWEI, bHexWEI) {
|
|
|
|
return subtractCurrencies(aHexWEI, bHexWEI, {
|
|
|
|
aBase: 16,
|
|
|
|
bBase: 16,
|
|
|
|
toNumericBase: 'hex',
|
|
|
|
numberOfDecimals: 6,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function addHexes(aHexWEI, bHexWEI) {
|
|
|
|
return addCurrencies(aHexWEI, bHexWEI, {
|
|
|
|
aBase: 16,
|
|
|
|
bBase: 16,
|
|
|
|
toNumericBase: 'hex',
|
|
|
|
numberOfDecimals: 6,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function decWEIToDecETH(hexWEI) {
|
|
|
|
return conversionUtil(hexWEI, {
|
|
|
|
fromNumericBase: 'dec',
|
|
|
|
toNumericBase: 'dec',
|
|
|
|
fromDenomination: 'WEI',
|
|
|
|
toDenomination: 'ETH',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function hexWEIToDecETH(hexWEI) {
|
|
|
|
return conversionUtil(hexWEI, {
|
|
|
|
fromNumericBase: 'hex',
|
|
|
|
toNumericBase: 'dec',
|
|
|
|
fromDenomination: 'WEI',
|
|
|
|
toDenomination: 'ETH',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function decEthToConvertedCurrency(
|
|
|
|
ethTotal,
|
|
|
|
convertedCurrency,
|
|
|
|
conversionRate,
|
|
|
|
) {
|
|
|
|
return conversionUtil(ethTotal, {
|
|
|
|
fromNumericBase: 'dec',
|
|
|
|
toNumericBase: 'dec',
|
|
|
|
fromCurrency: 'ETH',
|
|
|
|
toCurrency: convertedCurrency,
|
|
|
|
numberOfDecimals: 2,
|
|
|
|
conversionRate,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getWeiHexFromDecimalValue({
|
|
|
|
value,
|
|
|
|
fromCurrency,
|
|
|
|
conversionRate,
|
|
|
|
fromDenomination,
|
|
|
|
invertConversionRate,
|
|
|
|
}) {
|
|
|
|
return conversionUtil(value, {
|
|
|
|
fromNumericBase: 'dec',
|
|
|
|
toNumericBase: 'hex',
|
|
|
|
toCurrency: ETH,
|
|
|
|
fromCurrency,
|
|
|
|
conversionRate,
|
|
|
|
invertConversionRate,
|
|
|
|
fromDenomination,
|
|
|
|
toDenomination: WEI,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts a BN object to a hex string with a '0x' prefix
|
|
|
|
*
|
|
|
|
* @param {BN} inputBn - The BN to convert to a hex string
|
|
|
|
* @returns {string} A '0x' prefixed hex string
|
|
|
|
*/
|
|
|
|
export function bnToHex(inputBn) {
|
|
|
|
return addHexPrefix(inputBn.toString(16));
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getValueFromWeiHex({
|
|
|
|
value,
|
|
|
|
fromCurrency = ETH,
|
|
|
|
toCurrency,
|
|
|
|
conversionRate,
|
|
|
|
numberOfDecimals,
|
|
|
|
toDenomination,
|
|
|
|
}) {
|
|
|
|
return conversionUtil(value, {
|
|
|
|
fromNumericBase: 'hex',
|
|
|
|
toNumericBase: 'dec',
|
|
|
|
fromCurrency,
|
|
|
|
toCurrency,
|
|
|
|
numberOfDecimals,
|
|
|
|
fromDenomination: WEI,
|
|
|
|
toDenomination,
|
|
|
|
conversionRate,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function sumHexes(...args) {
|
|
|
|
const total = args.reduce((acc, hexAmount) => {
|
|
|
|
return addCurrencies(acc, hexAmount, {
|
|
|
|
toNumericBase: 'hex',
|
|
|
|
aBase: 16,
|
|
|
|
bBase: 16,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
return addHexPrefix(total);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function hexWEIToDecGWEI(decGWEI) {
|
|
|
|
return conversionUtil(decGWEI, {
|
|
|
|
fromNumericBase: 'hex',
|
|
|
|
toNumericBase: 'dec',
|
|
|
|
fromDenomination: 'WEI',
|
|
|
|
toDenomination: 'GWEI',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function decimalToHex(decimal) {
|
|
|
|
return conversionUtil(decimal, {
|
|
|
|
fromNumericBase: 'dec',
|
|
|
|
toNumericBase: 'hex',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function hexToDecimal(hexValue) {
|
|
|
|
return conversionUtil(hexValue, {
|
|
|
|
fromNumericBase: 'hex',
|
|
|
|
toNumericBase: 'dec',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-01-09 04:34:58 +01:00
|
|
|
export {
|
2017-09-12 07:19:05 +02:00
|
|
|
conversionUtil,
|
2017-09-20 15:56:20 +02:00
|
|
|
addCurrencies,
|
2017-10-13 22:19:22 +02:00
|
|
|
multiplyCurrencies,
|
2017-09-20 19:37:12 +02:00
|
|
|
conversionGreaterThan,
|
2018-06-15 03:02:03 +02:00
|
|
|
conversionLessThan,
|
2017-10-26 18:06:34 +02:00
|
|
|
conversionGTE,
|
|
|
|
conversionLTE,
|
2018-03-09 04:49:26 +01:00
|
|
|
conversionMax,
|
2017-10-26 18:06:34 +02:00
|
|
|
toNegative,
|
2017-10-26 18:43:12 +02:00
|
|
|
subtractCurrencies,
|
2021-07-31 02:45:18 +02:00
|
|
|
decGWEIToHexWEI,
|
2021-11-11 17:46:45 +01:00
|
|
|
toBigNumber,
|
|
|
|
toNormalizedDenomination,
|
2021-11-29 18:40:48 +01:00
|
|
|
divideCurrencies,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|