1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/pages/send/send-footer/send-footer.utils.js

82 lines
1.9 KiB
JavaScript
Raw Normal View History

import ethAbi from 'ethereumjs-abi'
import ethUtil from 'ethereumjs-util'
import { TOKEN_TRANSFER_FUNCTION_SIGNATURE } from '../send.constants'
2018-04-26 18:38:38 +02:00
export function addHexPrefixToObjectValues (obj) {
2018-04-26 18:38:38 +02:00
return Object.keys(obj).reduce((newObj, key) => {
return { ...newObj, [key]: ethUtil.addHexPrefix(obj[key]) }
}, {})
}
export function constructTxParams ({ sendToken, data, to, amount, from, gas, gasPrice }) {
2018-04-26 18:38:38 +02:00
const txParams = {
2018-07-17 00:50:26 +02:00
data,
2018-04-26 18:38:38 +02:00
from,
value: '0',
gas,
gasPrice,
}
if (!sendToken) {
2018-04-26 18:38:38 +02:00
txParams.value = amount
txParams.to = to
}
return addHexPrefixToObjectValues(txParams)
2018-04-26 18:38:38 +02:00
}
export function constructUpdatedTx ({
2018-04-26 18:38:38 +02:00
amount,
2018-07-17 00:50:26 +02:00
data,
2018-04-26 18:38:38 +02:00
editingTransactionId,
from,
gas,
gasPrice,
sendToken,
2018-04-26 18:38:38 +02:00
to,
unapprovedTxs,
}) {
2018-07-17 00:50:26 +02:00
const unapprovedTx = unapprovedTxs[editingTransactionId]
const txParamsData = unapprovedTx.txParams.data ? unapprovedTx.txParams.data : data
2018-04-26 18:38:38 +02:00
const editingTx = {
2018-07-17 00:50:26 +02:00
...unapprovedTx,
txParams: Object.assign(
unapprovedTx.txParams,
addHexPrefixToObjectValues({
data: txParamsData,
to,
from,
gas,
gasPrice,
value: amount,
}),
2018-07-17 00:50:26 +02:00
),
2018-04-26 18:38:38 +02:00
}
if (sendToken) {
2018-04-26 18:38:38 +02:00
Object.assign(editingTx.txParams, addHexPrefixToObjectValues({
value: '0',
to: sendToken.address,
data: (
TOKEN_TRANSFER_FUNCTION_SIGNATURE + Array.prototype.map.call(
ethAbi.rawEncode(['address', 'uint256'], [to, ethUtil.addHexPrefix(amount)]),
(x) => ('00' + x.toString(16)).slice(-2),
).join('')
),
2018-04-26 18:38:38 +02:00
}))
2018-07-17 00:50:26 +02:00
}
2018-04-26 18:38:38 +02:00
2018-07-17 00:50:26 +02:00
if (typeof editingTx.txParams.data === 'undefined') {
delete editingTx.txParams.data
2018-04-26 18:38:38 +02:00
}
return editingTx
2018-04-26 18:38:38 +02:00
}
export function addressIsNew (toAccounts, newAddress) {
const newAddressNormalized = newAddress.toLowerCase()
const foundMatching = toAccounts.some(({ address }) => address.toLowerCase() === newAddressNormalized)
return !foundMatching
2018-04-26 18:38:38 +02:00
}