mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-03 06:34:27 +01:00
e056c88ba7
* integration for tx decoding confirmation and history view * upgrading @truffle/decoder to latest release 5.1.0 * Update acorn and colors patches * feat: remove redundant styling * feat: basic integration for nickname components * feat: wiring functionality of adding new nickname * feat: wire functionality of showing nickname modal * feat: link the nickname popover with add/update popover * feat: moving forward with address nicknames integration * feat: fixing a bug related to passing chainId in addressBook * feat: populating memo prop in addressbook entry * feat: add explorer link * feat: bug fixing update nickname component * feat: fix proptypes * feat: adding tooltip for copying nickname address * featL fix styling for tx-details page * feat: optimize code for error handling * feat: limiting transaction decoding to tx with data * feat: remove tree UI component * feat: adding request to check for tx decoding supported networks * feat: showing data hex component * feat: fix react warnings * feat: remove extra margin in tx decoding * Remove unused package @truffle/source-map-utils * Ensure messages get translated * feat: link tx-decoding addresses with nicknames * Omit value for boolean attributes * Fix props reading in CopyRawData * fix: fixing issue with transaltion * Fix lint errors in TransactionDecoding - Remove unused import - Reorder imports - Address conflict between caught `error` and error state flag by renaming state flag to `hasError` - Fix requestUrl identifier casing and use of template string - Ensure `useEffect` gets passed the deps it needs - Add scope braces around case statement where it's needed - Omit literal `true` for boolean jsx attribute - Refactor nested ternary as `if` statements * fix: revert fetchWithCache modifications * Fix linting for TransactionListItemDetails - Remove unused import - Fix import spacing - Remove unused prop dereference - Fix string interpolation for translated From/To * Moving to popover pattern * fix: sass color variable * Omit value for boolean attribute * Remove changes from modal.js * fix: refactor nickname popovers * Ensure const gets declared before it's used * Fix linting for ConfirmTransactionBase - Remove unused prop chainId - Stop destructuring an unused field * fix: refactor usage of nicknames popovers in send-content-container * fix: remove extra prop updateAccountNicknameModal * fix: refactor code for address.component * fix: remove extra tooltip * Ensure NicknamePopovers always returns component * Fix linting for NicknamePopover component - Fix useCallback deps - Switch ternary to logical-or * Fix linting for SenderToRecipient ... by fixing import order * Remove unused addressCopied state * Delete empty file * fix: remove sender-to-recipient.container * fix: refactor usage of nickname popovers in confirm-page-container * fix: bug related to state variable * Stylelint fix * Lint fix * Change "Total Amount" to "Total" * Lint fix locales * Update address-book.spec.js * e2e test update * Update e2e tests * Fix issue where absence of function params in data hex tab would result in rendering a string * Fix border radius, and width and height in small notification windows, of the update-nickname-popover * Remove fake await * Clean up * Clean up Co-authored-by: Alaa Hadad <alaahd@Alaas-MacBook-M1-Pro-14-inch.local> Co-authored-by: Dan Miller <danjm.com@gmail.com> Co-authored-by: g. nicholas d'andrea <gnidan@trufflesuite.com>
220 lines
6.5 KiB
JavaScript
220 lines
6.5 KiB
JavaScript
import React, { useContext, useEffect, useState } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import inspect from 'browser-util-inspect';
|
|
import { forAddress } from '@truffle/decoder';
|
|
import { useSelector } from 'react-redux';
|
|
import * as Codec from '@truffle/codec';
|
|
import Spinner from '../../ui/spinner';
|
|
import ErrorMessage from '../../ui/error-message';
|
|
import fetchWithCache from '../../../helpers/utils/fetch-with-cache';
|
|
import { getSelectedAccount, getCurrentChainId } from '../../../selectors';
|
|
import { hexToDecimal } from '../../../helpers/utils/conversions.util';
|
|
import { I18nContext } from '../../../contexts/i18n';
|
|
import { toChecksumHexAddress } from '../../../../shared/modules/hexstring-utils';
|
|
import { transformTxDecoding } from './transaction-decoding.util';
|
|
import {
|
|
FETCH_PROJECT_INFO_URI,
|
|
FETCH_SUPPORTED_NETWORKS_URI,
|
|
} from './constants';
|
|
|
|
import Address from './components/decoding/address';
|
|
import CopyRawData from './components/ui/copy-raw-data';
|
|
|
|
export default function TransactionDecoding({ to = '', inputData: data = '' }) {
|
|
const t = useContext(I18nContext);
|
|
const [tx, setTx] = useState([]);
|
|
const { address: from } = useSelector(getSelectedAccount);
|
|
const network = hexToDecimal(useSelector(getCurrentChainId));
|
|
|
|
const [loading, setLoading] = useState(false);
|
|
const [hasError, setError] = useState(false);
|
|
const [errorMessage, setErrorMessage] = useState('');
|
|
|
|
useEffect(() => {
|
|
(async () => {
|
|
setLoading(true);
|
|
try {
|
|
const networks = await fetchWithCache(FETCH_SUPPORTED_NETWORKS_URI, {
|
|
method: 'GET',
|
|
});
|
|
|
|
if (
|
|
!networks.some(
|
|
(n) => n.active && Number(n.chainId) === Number(network),
|
|
)
|
|
) {
|
|
throw new Error(
|
|
t('transactionDecodingUnsupportedNetworkError', [network]),
|
|
);
|
|
}
|
|
|
|
const requestUrl = `${FETCH_PROJECT_INFO_URI}?${new URLSearchParams({
|
|
to,
|
|
'network-id': network,
|
|
})}`;
|
|
|
|
const response = await fetchWithCache(requestUrl, { method: 'GET' });
|
|
|
|
const { info: projectInfo } = response;
|
|
|
|
// creating instance of the truffle decoder
|
|
const decoder = await forAddress(to, {
|
|
provider: global.ethereumProvider,
|
|
projectInfo,
|
|
});
|
|
|
|
// decode tx input data
|
|
const decoding = await decoder.decodeTransaction({
|
|
from,
|
|
to,
|
|
input: data,
|
|
blockNumber: null,
|
|
});
|
|
|
|
// transform tx decoding arguments into tree data
|
|
const params = transformTxDecoding(decoding?.arguments);
|
|
setTx(params);
|
|
|
|
setLoading(false);
|
|
} catch (error) {
|
|
setLoading(false);
|
|
setError(true);
|
|
setErrorMessage(error?.message);
|
|
}
|
|
})();
|
|
}, [t, from, to, network, data]);
|
|
|
|
// ***********************************************************
|
|
// component rendering methods
|
|
// ***********************************************************
|
|
const renderLeaf = ({ name, kind, typeClass, value }) => {
|
|
switch (kind) {
|
|
case 'error':
|
|
return (
|
|
<span className="sol-item solidity-error">
|
|
<span>Malformed data</span>
|
|
</span>
|
|
);
|
|
|
|
default:
|
|
switch (typeClass) {
|
|
case 'int':
|
|
return (
|
|
<span className="sol-item solidity-int">
|
|
{[value.asBN || value.asString].toString()}
|
|
</span>
|
|
);
|
|
|
|
case 'uint':
|
|
return (
|
|
<span className="sol-item solidity-uint">
|
|
{[value.asBN || value.asString].toString()}
|
|
</span>
|
|
);
|
|
|
|
case 'bytes':
|
|
return (
|
|
<span className="sol-item solidity-bytes">{value.asHex}</span>
|
|
);
|
|
|
|
case 'array':
|
|
return (
|
|
<details>
|
|
<summary className="typography--color-black">{name}: </summary>
|
|
<ol>
|
|
{value.map((itemValue, index) => {
|
|
return (
|
|
<li key={`${itemValue.type?.typeClass}-${index}`}>
|
|
{renderLeaf({
|
|
typeClass: itemValue.type?.typeClass,
|
|
value: itemValue.value,
|
|
kind: itemValue.kind,
|
|
})}
|
|
</li>
|
|
);
|
|
})}
|
|
</ol>
|
|
</details>
|
|
);
|
|
|
|
case 'address': {
|
|
const address = value?.asAddress;
|
|
return (
|
|
<Address
|
|
addressOnly
|
|
checksummedRecipientAddress={toChecksumHexAddress(address)}
|
|
/>
|
|
);
|
|
}
|
|
default:
|
|
return (
|
|
<pre className="sol-item solidity-raw">
|
|
{inspect(new Codec.Format.Utils.Inspect.ResultInspector(value))}
|
|
</pre>
|
|
);
|
|
}
|
|
}
|
|
};
|
|
|
|
const renderTree = (
|
|
{ name, kind, typeClass, type, value, children },
|
|
index,
|
|
) => {
|
|
return children ? (
|
|
<li key={`${typeClass}-${index}`}>
|
|
<details open={index === 0 ? 'open' : ''}>
|
|
<summary>{name}: </summary>
|
|
<ol>{children.map(renderTree)}</ol>
|
|
</details>
|
|
</li>
|
|
) : (
|
|
<li className="solidity-value">
|
|
<div className="solidity-named-item solidity-item">
|
|
{typeClass !== 'array' && !Array.isArray(value) ? (
|
|
<span className="param-name typography--color-black">{name}: </span>
|
|
) : null}
|
|
<span className="sol-item solidity-uint">
|
|
{renderLeaf({ name, typeClass, type, value, kind })}
|
|
</span>
|
|
</div>
|
|
</li>
|
|
);
|
|
};
|
|
|
|
const renderTransactionDecoding = () => {
|
|
if (loading) {
|
|
return (
|
|
<div className="tx-insight-loading">
|
|
<Spinner color="#F7C06C" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (hasError) {
|
|
return (
|
|
<div className="tx-insight-error">
|
|
<ErrorMessage errorMessage={errorMessage} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="tx-insight-content">
|
|
<div className="tx-insight-content__tree-component">
|
|
<ol>{tx.map(renderTree)}</ol>
|
|
</div>
|
|
<div className="tx-insight-content__copy-raw-tx">
|
|
<CopyRawData data={data} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
return <div className="tx-insight">{renderTransactionDecoding()}</div>;
|
|
}
|
|
|
|
TransactionDecoding.propTypes = {
|
|
to: PropTypes.string.isRequired,
|
|
inputData: PropTypes.string.isRequired,
|
|
};
|