2018-07-31 07:03:20 +02:00
|
|
|
import ethUtil from 'ethereumjs-util'
|
|
|
|
import MethodRegistry from 'eth-method-registry'
|
2018-08-06 07:25:58 +02:00
|
|
|
import abi from 'human-standard-token-abi'
|
2020-08-22 04:29:19 +02:00
|
|
|
import { ethers } from 'ethers'
|
2020-08-18 21:18:25 +02:00
|
|
|
import log from 'loglevel'
|
2018-12-09 21:48:06 +01:00
|
|
|
import {
|
|
|
|
TRANSACTION_TYPE_CANCEL,
|
|
|
|
TRANSACTION_STATUS_CONFIRMED,
|
2019-03-22 00:03:30 +01:00
|
|
|
} from '../../../../app/scripts/controllers/transactions/enums'
|
2020-07-08 23:05:09 +02:00
|
|
|
import { getEtherscanNetworkPrefix } from '../../../lib/etherscan-prefix-for-network'
|
2018-07-31 07:03:20 +02:00
|
|
|
import {
|
|
|
|
TOKEN_METHOD_TRANSFER,
|
|
|
|
TOKEN_METHOD_APPROVE,
|
|
|
|
TOKEN_METHOD_TRANSFER_FROM,
|
|
|
|
} from '../constants/transactions'
|
2020-08-18 21:18:25 +02:00
|
|
|
import fetchWithCache from './fetch-with-cache'
|
|
|
|
|
2019-03-22 00:03:30 +01:00
|
|
|
import { addCurrencies } from './conversion-util'
|
2018-08-31 21:36:07 +02:00
|
|
|
|
2020-08-22 04:29:19 +02:00
|
|
|
const hstInterface = new ethers.utils.Interface(abi)
|
2018-08-06 07:25:58 +02:00
|
|
|
|
2020-08-22 04:29:19 +02:00
|
|
|
/**
|
|
|
|
* @typedef EthersContractCall
|
|
|
|
* @type object
|
|
|
|
* @property {any[]} args - The args/params to the function call.
|
|
|
|
* An array-like object with numerical and string indices.
|
|
|
|
* @property {string} name - The name of the function.
|
|
|
|
* @property {string} signature - The function signature.
|
|
|
|
* @property {string} sighash - The function signature hash.
|
|
|
|
* @property {EthersBigNumber} value - The ETH value associated with the call.
|
|
|
|
* @property {FunctionFragment} functionFragment - The Ethers function fragment
|
|
|
|
* representation of the function.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @returns {EthersContractCall | undefined}
|
|
|
|
*/
|
|
|
|
export function getTokenData (data) {
|
|
|
|
try {
|
|
|
|
return hstInterface.parseTransaction({ data })
|
|
|
|
} catch (error) {
|
|
|
|
log.debug('Failed to parse transaction data.', error, data)
|
|
|
|
return undefined
|
|
|
|
}
|
2018-08-06 07:25:58 +02:00
|
|
|
}
|
|
|
|
|
2019-06-18 14:17:14 +02:00
|
|
|
async function getMethodFrom4Byte (fourBytePrefix) {
|
|
|
|
const fourByteResponse = (await fetchWithCache(`https://www.4byte.directory/api/v1/signatures/?hex_signature=${fourBytePrefix}`, {
|
|
|
|
referrerPolicy: 'no-referrer-when-downgrade',
|
|
|
|
body: null,
|
|
|
|
method: 'GET',
|
|
|
|
mode: 'cors',
|
|
|
|
}))
|
|
|
|
|
2019-09-04 21:10:23 +02:00
|
|
|
if (fourByteResponse.count === 1) {
|
|
|
|
return fourByteResponse.results[0].text_signature
|
2019-06-18 14:17:14 +02:00
|
|
|
}
|
2020-08-19 18:27:05 +02:00
|
|
|
return null
|
2019-06-18 14:17:14 +02:00
|
|
|
}
|
2020-03-17 15:14:27 +01:00
|
|
|
let registry
|
2018-08-06 07:25:58 +02:00
|
|
|
|
2018-10-24 17:27:16 +02:00
|
|
|
/**
|
2019-06-18 14:17:14 +02:00
|
|
|
* Attempts to return the method data from the MethodRegistry library, the message registry library and the token abi, in that order of preference
|
|
|
|
* @param {string} fourBytePrefix - The prefix from the method code associated with the data
|
2018-10-24 17:27:16 +02:00
|
|
|
* @returns {Object}
|
|
|
|
*/
|
2019-06-18 14:17:14 +02:00
|
|
|
export async function getMethodDataAsync (fourBytePrefix) {
|
|
|
|
try {
|
|
|
|
const fourByteSig = getMethodFrom4Byte(fourBytePrefix).catch((e) => {
|
|
|
|
log.error(e)
|
|
|
|
return null
|
|
|
|
})
|
|
|
|
|
2020-03-17 15:14:27 +01:00
|
|
|
if (!registry) {
|
|
|
|
registry = new MethodRegistry({ provider: global.ethereumProvider })
|
|
|
|
}
|
|
|
|
|
2019-06-18 14:17:14 +02:00
|
|
|
let sig = await registry.lookup(fourBytePrefix)
|
|
|
|
|
|
|
|
if (!sig) {
|
|
|
|
sig = await fourByteSig
|
2019-03-29 15:48:08 +01:00
|
|
|
}
|
2018-10-24 17:27:16 +02:00
|
|
|
|
2019-06-18 14:17:14 +02:00
|
|
|
if (!sig) {
|
|
|
|
return {}
|
|
|
|
}
|
|
|
|
|
|
|
|
const parsedResult = registry.parse(sig)
|
2018-08-06 07:25:58 +02:00
|
|
|
|
2019-06-18 14:17:14 +02:00
|
|
|
return {
|
|
|
|
name: parsedResult.name,
|
|
|
|
params: parsedResult.args,
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
log.error(error)
|
|
|
|
return {}
|
|
|
|
}
|
2018-08-06 07:25:58 +02:00
|
|
|
}
|
|
|
|
|
2019-01-22 19:22:56 +01:00
|
|
|
/**
|
|
|
|
* Returns four-byte method signature from data
|
|
|
|
*
|
|
|
|
* @param {string} data - The hex data (@code txParams.data) of a transaction
|
|
|
|
* @returns {string} - The four-byte method signature
|
|
|
|
*/
|
|
|
|
export function getFourBytePrefix (data = '') {
|
|
|
|
const prefixedData = ethUtil.addHexPrefix(data)
|
|
|
|
const fourBytePrefix = prefixedData.slice(0, 10)
|
|
|
|
return fourBytePrefix
|
|
|
|
}
|
|
|
|
|
2019-06-28 05:53:12 +02:00
|
|
|
/**
|
|
|
|
* Given an transaction category, returns a boolean which indicates whether the transaction is calling an erc20 token method
|
|
|
|
*
|
|
|
|
* @param {string} transactionCategory - The category of transaction being evaluated
|
|
|
|
* @returns {boolean} - whether the transaction is calling an erc20 token method
|
|
|
|
*/
|
|
|
|
export function isTokenMethodAction (transactionCategory) {
|
|
|
|
return [
|
|
|
|
TOKEN_METHOD_TRANSFER,
|
|
|
|
TOKEN_METHOD_APPROVE,
|
|
|
|
TOKEN_METHOD_TRANSFER_FROM,
|
|
|
|
].includes(transactionCategory)
|
|
|
|
}
|
|
|
|
|
2018-08-12 06:12:30 +02:00
|
|
|
export function getLatestSubmittedTxWithNonce (transactions = [], nonce = '0x0') {
|
2018-08-03 05:20:15 +02:00
|
|
|
if (!transactions.length) {
|
|
|
|
return {}
|
|
|
|
}
|
|
|
|
|
|
|
|
return transactions.reduce((acc, current) => {
|
2018-08-12 06:12:30 +02:00
|
|
|
const { submittedTime, txParams: { nonce: currentNonce } = {} } = current
|
2018-08-03 05:20:15 +02:00
|
|
|
|
2018-08-12 06:12:30 +02:00
|
|
|
if (currentNonce === nonce) {
|
2020-08-13 22:00:09 +02:00
|
|
|
if (!acc.submittedTime) {
|
|
|
|
return current
|
|
|
|
}
|
|
|
|
return submittedTime > acc.submittedTime ? current : acc
|
2018-08-03 05:20:15 +02:00
|
|
|
}
|
2020-08-19 18:27:05 +02:00
|
|
|
return acc
|
2018-08-12 06:12:30 +02:00
|
|
|
}, {})
|
2018-08-03 05:20:15 +02:00
|
|
|
}
|
2018-08-24 01:44:38 +02:00
|
|
|
|
|
|
|
export async function isSmartContractAddress (address) {
|
|
|
|
const code = await global.eth.getCode(address)
|
2018-10-21 06:52:41 +02:00
|
|
|
// Geth will return '0x', and ganache-core v2.2.1 will return '0x0'
|
|
|
|
const codeIsEmpty = !code || code === '0x' || code === '0x0'
|
|
|
|
return !codeIsEmpty
|
2018-08-24 01:44:38 +02:00
|
|
|
}
|
2018-08-31 21:36:07 +02:00
|
|
|
|
2018-09-07 22:59:05 +02:00
|
|
|
export function sumHexes (...args) {
|
2018-08-31 21:36:07 +02:00
|
|
|
const total = args.reduce((acc, base) => {
|
|
|
|
return addCurrencies(acc, base, {
|
|
|
|
toNumericBase: 'hex',
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
return ethUtil.addHexPrefix(total)
|
|
|
|
}
|
2018-10-16 00:00:47 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a status key for a transaction. Requires parsing the txMeta.txReceipt on top of
|
|
|
|
* txMeta.status because txMeta.status does not reflect on-chain errors.
|
|
|
|
* @param {Object} transaction - The txMeta object of a transaction.
|
|
|
|
* @param {Object} transaction.txReceipt - The transaction receipt.
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
export function getStatusKey (transaction) {
|
2018-12-09 21:48:06 +01:00
|
|
|
const { txReceipt: { status: receiptStatus } = {}, type, status } = transaction
|
2018-10-16 00:00:47 +02:00
|
|
|
|
|
|
|
// There was an on-chain failure
|
2018-12-09 21:48:06 +01:00
|
|
|
if (receiptStatus === '0x0') {
|
2018-10-16 00:00:47 +02:00
|
|
|
return 'failed'
|
|
|
|
}
|
|
|
|
|
2018-12-09 21:48:06 +01:00
|
|
|
if (status === TRANSACTION_STATUS_CONFIRMED && type === TRANSACTION_TYPE_CANCEL) {
|
|
|
|
return 'cancelled'
|
|
|
|
}
|
|
|
|
|
2018-10-16 00:00:47 +02:00
|
|
|
return transaction.status
|
|
|
|
}
|
2019-05-09 19:27:14 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an external block explorer URL at which a transaction can be viewed.
|
|
|
|
* @param {number} networkId
|
|
|
|
* @param {string} hash
|
|
|
|
* @param {Object} rpcPrefs
|
|
|
|
*/
|
|
|
|
export function getBlockExplorerUrlForTx (networkId, hash, rpcPrefs = {}) {
|
|
|
|
if (rpcPrefs.blockExplorerUrl) {
|
2020-08-14 13:48:42 +02:00
|
|
|
return `${rpcPrefs.blockExplorerUrl.replace(/\/+$/u, '')}/tx/${hash}`
|
2019-05-09 19:27:14 +02:00
|
|
|
}
|
2020-07-08 23:05:09 +02:00
|
|
|
const prefix = getEtherscanNetworkPrefix(networkId)
|
2019-05-09 19:27:14 +02:00
|
|
|
return `https://${prefix}etherscan.io/tx/${hash}`
|
|
|
|
}
|