mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
0e9c8fb5cc
* Changed max button to checkbox, disabled input if max mode is on, recalculate price according to gas fee if max mode is on * Disabled insufficient funds message in the modal if max mode is on, displays proper amounts in modal when max mode is on, sets the send amount according to custom gas price after gas modal save, resets the send amount after resetting custom gas price * Disabled max mode checkbox if gas buttons are loading, refactored gas-modal-page-container * Implemented new max button & max mode message. Moved insufficient funds error to underneath the send amount field * Fixed existing integration test to pass, created new tests to ensure send amount field is disabled when max button is clicked and the amount changes when the gas price is changed. Refactored some components
132 lines
2.9 KiB
JavaScript
132 lines
2.9 KiB
JavaScript
import ethUtil from 'ethereumjs-util'
|
|
import { ETH, GWEI, WEI } from '../constants/common'
|
|
import { conversionUtil, addCurrencies, subtractCurrencies } from './conversion-util'
|
|
|
|
export function bnToHex (inputBn) {
|
|
return ethUtil.addHexPrefix(inputBn.toString(16))
|
|
}
|
|
|
|
export function hexToDecimal (hexValue) {
|
|
return conversionUtil(hexValue, {
|
|
fromNumericBase: 'hex',
|
|
toNumericBase: 'dec',
|
|
})
|
|
}
|
|
|
|
export function decimalToHex (decimal) {
|
|
return conversionUtil(decimal, {
|
|
fromNumericBase: 'dec',
|
|
toNumericBase: 'hex',
|
|
})
|
|
}
|
|
|
|
export function getEthConversionFromWeiHex ({ value, fromCurrency = ETH, conversionRate, numberOfDecimals = 6 }) {
|
|
const denominations = [fromCurrency, GWEI, WEI]
|
|
|
|
let nonZeroDenomination
|
|
|
|
for (let i = 0; i < denominations.length; i++) {
|
|
const convertedValue = getValueFromWeiHex({
|
|
value,
|
|
conversionRate,
|
|
fromCurrency,
|
|
toCurrency: fromCurrency,
|
|
numberOfDecimals,
|
|
toDenomination: denominations[i],
|
|
})
|
|
|
|
if (convertedValue !== '0' || i === denominations.length - 1) {
|
|
nonZeroDenomination = `${convertedValue} ${denominations[i]}`
|
|
break
|
|
}
|
|
}
|
|
|
|
return nonZeroDenomination
|
|
}
|
|
|
|
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 getWeiHexFromDecimalValue ({
|
|
value,
|
|
fromCurrency,
|
|
conversionRate,
|
|
fromDenomination,
|
|
invertConversionRate,
|
|
}) {
|
|
return conversionUtil(value, {
|
|
fromNumericBase: 'dec',
|
|
toNumericBase: 'hex',
|
|
toCurrency: ETH,
|
|
fromCurrency,
|
|
conversionRate,
|
|
invertConversionRate,
|
|
fromDenomination,
|
|
toDenomination: WEI,
|
|
})
|
|
}
|
|
|
|
export function addHexWEIsToDec (aHexWEI, bHexWEI) {
|
|
return addCurrencies(aHexWEI, bHexWEI, {
|
|
aBase: 16,
|
|
bBase: 16,
|
|
fromDenomination: 'WEI',
|
|
numberOfDecimals: 6,
|
|
})
|
|
}
|
|
|
|
export function subtractHexWEIsToDec (aHexWEI, bHexWEI) {
|
|
return subtractCurrencies(aHexWEI, bHexWEI, {
|
|
aBase: 16,
|
|
bBase: 16,
|
|
fromDenomination: 'WEI',
|
|
numberOfDecimals: 6,
|
|
})
|
|
}
|
|
|
|
export function decEthToConvertedCurrency (ethTotal, convertedCurrency, conversionRate) {
|
|
return conversionUtil(ethTotal, {
|
|
fromNumericBase: 'dec',
|
|
toNumericBase: 'dec',
|
|
fromCurrency: 'ETH',
|
|
toCurrency: convertedCurrency,
|
|
numberOfDecimals: 2,
|
|
conversionRate,
|
|
})
|
|
}
|
|
|
|
export function decGWEIToHexWEI (decGWEI) {
|
|
return conversionUtil(decGWEI, {
|
|
fromNumericBase: 'dec',
|
|
toNumericBase: 'hex',
|
|
fromDenomination: 'GWEI',
|
|
toDenomination: 'WEI',
|
|
})
|
|
}
|
|
|
|
export function hexWEIToDecGWEI (decGWEI) {
|
|
return conversionUtil(decGWEI, {
|
|
fromNumericBase: 'hex',
|
|
toNumericBase: 'dec',
|
|
fromDenomination: 'WEI',
|
|
toDenomination: 'GWEI',
|
|
})
|
|
}
|