Skip to content

Commit

Permalink
[FLASK] Allow snaps insights to show on regular EOA transactions (#16093
Browse files Browse the repository at this point in the history
)
  • Loading branch information
GuillaumeRx committed Oct 26, 2022
1 parent 29a33b4 commit cf265ed
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
Expand Up @@ -102,9 +102,11 @@ export default class ConfirmPageContainerContent extends Component {
>
{detailsComponent}
</Tab>
<Tab className="confirm-page-container-content__tab" name={t('data')}>
{dataComponent}
</Tab>
{dataComponent && (
<Tab className="confirm-page-container-content__tab" name={t('data')}>
{dataComponent}
</Tab>
)}
{dataHexComponent && (
<Tab
className="confirm-page-container-content__tab"
Expand Down
Expand Up @@ -764,13 +764,17 @@ export default class ConfirmTransactionBase extends Component {
({ id }) => id === selectedInsightSnapId,
);

const allowedTransactionTypes =
txData.type === TRANSACTION_TYPES.CONTRACT_INTERACTION ||
txData.type === TRANSACTION_TYPES.SIMPLE_SEND ||
txData.type === TRANSACTION_TYPES.TOKEN_METHOD_SAFE_TRANSFER_FROM ||
txData.type === TRANSACTION_TYPES.TOKEN_METHOD_TRANSFER_FROM ||
txData.type === TRANSACTION_TYPES.TOKEN_METHOD_TRANSFER;

const networkId = CHAIN_ID_TO_NETWORK_ID_MAP[chainId];
const caip2ChainId = `eip155:${networkId ?? stripHexPrefix(chainId)}`;

if (
txData.type !== TRANSACTION_TYPES.CONTRACT_INTERACTION ||
!insightSnaps.length
) {
if (!allowedTransactionTypes || !insightSnaps.length) {
return null;
}

Expand Down

0 comments on commit cf265ed

Please sign in to comment.