mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 13:47:06 +01:00
76a2a9bb8b
* @metamask/eslint-config@5.0.0 * Update eslintrc and prettierrc * yarn lint:fix
23 lines
685 B
JavaScript
23 lines
685 B
JavaScript
import {
|
|
multiplyCurrencies,
|
|
subtractCurrencies,
|
|
} from '../../../../../helpers/utils/conversion-util';
|
|
import { addHexPrefix } from '../../../../../../../app/scripts/lib/util';
|
|
|
|
export function calcMaxAmount({ balance, gasTotal, sendToken, tokenBalance }) {
|
|
const { decimals } = sendToken || {};
|
|
const multiplier = Math.pow(10, Number(decimals || 0));
|
|
|
|
return sendToken
|
|
? multiplyCurrencies(tokenBalance, multiplier, {
|
|
toNumericBase: 'hex',
|
|
multiplicandBase: 16,
|
|
multiplierBase: 10,
|
|
})
|
|
: subtractCurrencies(addHexPrefix(balance), addHexPrefix(gasTotal), {
|
|
toNumericBase: 'hex',
|
|
aBase: 16,
|
|
bBase: 16,
|
|
});
|
|
}
|