forked from torusresearch/torus-website
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconversionUtils.js
286 lines (245 loc) · 8.66 KB
/
conversionUtils.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/* Currency Conversion Utility
* 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.
* @param {Object} [options] - Options to specify details of the conversion
* @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
* @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.
*/
import { stripHexPrefix } from '@ethereumjs/util'
import BigNumber from 'bignumber.js'
import BN from 'bn.js'
// Big Number Constants
const BIG_NUMBER_WEI_MULTIPLIER = new BigNumber('1000000000000000000')
const BIG_NUMBER_GWEI_MULTIPLIER = new BigNumber('1000000000')
const BIG_NUMBER_ETH_MULTIPLIER = new BigNumber('1')
// Setter Maps
const toBigNumber = {
hex: (n) => new BigNumber(stripHexPrefix(n), 16),
dec: (n) => new BigNumber(String(n), 10),
BN: (n) => new BigNumber(n.toString(16), 16),
}
const toNormalizedDenomination = {
WEI: (bigNumber) => bigNumber.div(BIG_NUMBER_WEI_MULTIPLIER),
GWEI: (bigNumber) => bigNumber.div(BIG_NUMBER_GWEI_MULTIPLIER),
ETH: (bigNumber) => bigNumber.div(BIG_NUMBER_ETH_MULTIPLIER),
}
const toSpecifiedDenomination = {
WEI: (bigNumber) => bigNumber.times(BIG_NUMBER_WEI_MULTIPLIER).dp(0, BigNumber.ROUND_HALF_UP),
GWEI: (bigNumber) => bigNumber.times(BIG_NUMBER_GWEI_MULTIPLIER).dp(9, BigNumber.ROUND_HALF_UP),
ETH: (bigNumber) => bigNumber.times(BIG_NUMBER_ETH_MULTIPLIER).dp(9, BigNumber.ROUND_HALF_UP),
}
const baseChange = {
hex: (n) => n.toString(16),
dec: (n) => new BigNumber(n).toString(10),
BN: (n) => new BN(n.toString(16)),
}
// Utility function for checking base types
const isValidBase = (base) => Number.isInteger(base) && base > 1
/**
* Defines the base type of numeric value
* @typedef {('hex' | 'dec' | 'BN')} NumericBase
*/
/**
* Defines which type of denomination a value is in
* @typedef {('WEI' | 'GWEI' | 'ETH')} EthDenomination
*/
/**
* Utility method to convert a value between denominations, formats and currencies.
* @param {Object} input
* @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,
}) => {
let convertedValue = fromNumericBase ? toBigNumber[fromNumericBase](value) : value
if (fromDenomination) {
convertedValue = toNormalizedDenomination[fromDenomination](convertedValue)
}
if (fromCurrency !== toCurrency) {
if (conversionRate === null || conversionRate === undefined) {
throw new Error(`Converting from ${fromCurrency} to ${toCurrency} requires a conversionRate, but one was not provided`)
}
let rate = toBigNumber.dec(conversionRate)
if (invertConversionRate) {
rate = new BigNumber(1).div(conversionRate)
}
convertedValue = convertedValue.times(rate)
}
if (toDenomination) {
convertedValue = toSpecifiedDenomination[toDenomination](convertedValue)
}
if (numberOfDecimals) {
convertedValue = convertedValue.dp(numberOfDecimals, BigNumber.ROUND_HALF_DOWN)
}
if (roundDown) {
convertedValue = convertedValue.dp(roundDown, BigNumber.ROUND_DOWN)
}
if (toNumericBase) {
convertedValue = baseChange[toNumericBase](convertedValue)
}
return convertedValue
}
const conversionUtil = (
value,
{
fromCurrency = null,
toCurrency = fromCurrency,
fromNumericBase,
toNumericBase,
fromDenomination,
toDenomination,
numberOfDecimals,
conversionRate,
invertConversionRate,
}
) => {
if (fromCurrency !== toCurrency && !conversionRate) {
return 0
}
return converter({
fromCurrency,
toCurrency,
fromNumericBase,
toNumericBase,
fromDenomination,
toDenomination,
numberOfDecimals,
conversionRate,
invertConversionRate,
value: value || '0',
})
}
const getBigNumber = (value, base) => {
if (!isValidBase(base)) {
throw new Error('Must specificy valid base')
}
// We don't include 'number' here, because BigNumber will throw if passed
// a number primitive it considers unsafe.
if (typeof value === 'string' || value instanceof BigNumber) {
return new BigNumber(value, base)
}
return new BigNumber(String(value), base)
}
const addCurrencies = (a, b, options = {}) => {
const { aBase, bBase, ...conversionOptions } = options
if (!isValidBase(aBase) || !isValidBase(bBase)) {
throw new Error('Must specify valid aBase and bBase')
}
const value = getBigNumber(a, aBase).plus(getBigNumber(b, bBase))
return converter({
value,
...conversionOptions,
})
}
const subtractCurrencies = (a, b, options = {}) => {
const { aBase, bBase, ...conversionOptions } = options
if (!isValidBase(aBase) || !isValidBase(bBase)) {
throw new Error('Must specify valid aBase and bBase')
}
const value = getBigNumber(a, aBase).minus(getBigNumber(b, bBase))
return converter({
value,
...conversionOptions,
})
}
const multiplyCurrencies = (a, b, options = {}) => {
const { multiplicandBase, multiplierBase, ...conversionOptions } = options
if (!isValidBase(multiplicandBase) || !isValidBase(multiplierBase)) {
throw new Error('Must specify valid multiplicandBase and multiplierBase')
}
const value = getBigNumber(a, multiplicandBase).times(getBigNumber(b, multiplierBase))
return converter({
value,
...conversionOptions,
})
}
const conversionGreaterThan = ({ ...firstProps }, { ...secondProps }) => {
const firstValue = converter({ ...firstProps })
const secondValue = converter({ ...secondProps })
return firstValue.gt(secondValue)
}
const conversionLessThan = ({ ...firstProps }, { ...secondProps }) => {
const firstValue = converter({ ...firstProps })
const secondValue = converter({ ...secondProps })
return firstValue.lt(secondValue)
}
const conversionMax = ({ ...firstProps }, { ...secondProps }) => {
const firstIsGreater = conversionGreaterThan({ ...firstProps }, { ...secondProps })
return firstIsGreater ? firstProps.value : secondProps.value
}
const conversionGTE = ({ ...firstProps }, { ...secondProps }) => {
const firstValue = converter({ ...firstProps })
const secondValue = converter({ ...secondProps })
return firstValue.greaterThanOrEqualTo(secondValue)
}
const conversionLTE = ({ ...firstProps }, { ...secondProps }) => {
const firstValue = converter({ ...firstProps })
const secondValue = converter({ ...secondProps })
return firstValue.lessThanOrEqualTo(secondValue)
}
const toNegative = (n, options = {}) => multiplyCurrencies(n, -1, options)
function decGWEIToHexWEI(decGWEI) {
return conversionUtil(decGWEI, {
fromNumericBase: 'dec',
toNumericBase: 'hex',
fromDenomination: 'GWEI',
toDenomination: 'WEI',
})
}
function hexWEIToDecGWEI(decGWEI) {
return conversionUtil(decGWEI, {
fromNumericBase: 'hex',
toNumericBase: 'dec',
fromDenomination: 'WEI',
toDenomination: 'GWEI',
})
}
export {
addCurrencies,
conversionGreaterThan,
conversionGTE,
conversionLessThan,
conversionLTE,
conversionMax,
conversionUtil,
decGWEIToHexWEI,
hexWEIToDecGWEI,
multiplyCurrencies,
subtractCurrencies,
toNegative,
}