From 107b16fe5568bc2163e91f4ee972070a9bfb1669 Mon Sep 17 00:00:00 2001 From: Daniel <80175477+dan437@users.noreply.github.com> Date: Wed, 26 Jun 2024 18:20:36 +0200 Subject: [PATCH] feat: Add the "is_smart_transaction" prop for the "Swap Started" event (#10112) --- app/components/UI/Swaps/QuotesView.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/components/UI/Swaps/QuotesView.js b/app/components/UI/Swaps/QuotesView.js index f2b597fcb46..9bde17893a5 100644 --- a/app/components/UI/Swaps/QuotesView.js +++ b/app/components/UI/Swaps/QuotesView.js @@ -889,6 +889,7 @@ function SwapsQuotesView({ ), network_fees_ETH: renderFromWei(toWei(selectedQuoteValue?.ethFee)), chain_id: getDecimalChainId(chainId), + is_smart_transaction: shouldUseSmartTransaction, }; trackAnonymousEvent(MetaMetricsEvents.SWAP_STARTED, parameters); },