You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
613 B
22 lines
613 B
const {
|
|
multiplyCurrencies,
|
|
subtractCurrencies,
|
|
} = require('../../../../conversion-util')
|
|
const ethUtil = require('ethereumjs-util')
|
|
|
|
function calcMaxAmount ({ balance, gasTotal, selectedToken, tokenBalance }) {
|
|
const { decimals } = selectedToken || {}
|
|
const multiplier = Math.pow(10, Number(decimals || 0))
|
|
|
|
return selectedToken
|
|
? multiplyCurrencies(tokenBalance, multiplier, {toNumericBase: 'hex'})
|
|
: subtractCurrencies(
|
|
ethUtil.addHexPrefix(balance),
|
|
ethUtil.addHexPrefix(gasTotal),
|
|
{ toNumericBase: 'hex' }
|
|
)
|
|
}
|
|
|
|
module.exports = {
|
|
calcMaxAmount,
|
|
}
|
|
|