1
1
import { SwapEventName } from '@uniswap/analytics-events'
2
- import { INTERNAL_ROUTER_PREFERENCE_PRICE , RouterPreference } from 'state/routing/types'
2
+ import { SignatureType } from 'state/signatures/types'
3
+ import { ConfirmedTransactionDetails } from 'state/transactions/types'
4
+ import { UniswapXOrderStatus } from 'types/uniswapx'
5
+ import { TransactionStatus } from 'uniswap/src/data/graphql/uniswap-data-api/__generated__/types-and-hooks'
3
6
import { sendAnalyticsEvent } from 'uniswap/src/features/telemetry/send'
7
+ import { SwapRouting } from 'uniswap/src/features/telemetry/types'
4
8
import { SwapEventType , timestampTracker } from 'uniswap/src/features/transactions/swap/utils/SwapEventTimestampTracker'
5
9
import { TransactionOriginType } from 'uniswap/src/features/transactions/types/transactionDetails'
6
10
import { ITraceContext } from 'utilities/src/telemetry/trace/TraceContext'
7
11
8
- export function logSwapSuccess ( hash : string , chainId : number , analyticsContext : ITraceContext ) {
12
+ export function logSwapFinalized (
13
+ hash : string ,
14
+ chainId : number ,
15
+ analyticsContext : ITraceContext ,
16
+ status : ConfirmedTransactionDetails [ 'status' ] ,
17
+ ) {
9
18
const hasSetSwapSuccess = timestampTracker . hasTimestamp ( SwapEventType . FirstSwapSuccess )
10
19
const elapsedTime = timestampTracker . setElapsedTime ( SwapEventType . FirstSwapSuccess )
11
20
12
- sendAnalyticsEvent ( SwapEventName . SWAP_TRANSACTION_COMPLETED , {
21
+ const event =
22
+ status === TransactionStatus . Confirmed
23
+ ? SwapEventName . SWAP_TRANSACTION_COMPLETED
24
+ : SwapEventName . SWAP_TRANSACTION_FAILED
25
+
26
+ sendAnalyticsEvent ( event , {
13
27
routing : 'classic' ,
14
28
// We only log the time-to-swap metric for the first swap of a session,
15
29
// so if it was previously set we log undefined here.
@@ -23,17 +37,32 @@ export function logSwapSuccess(hash: string, chainId: number, analyticsContext:
23
37
...analyticsContext ,
24
38
} )
25
39
}
26
- export function logUniswapXSwapSuccess (
27
- hash : string ,
40
+
41
+ const SIGNATURE_TYPE_TO_SWAP_ROUTING : Record < SignatureType , SwapRouting > = {
42
+ [ SignatureType . SIGN_LIMIT ] : 'limit_order' ,
43
+ [ SignatureType . SIGN_PRIORITY_ORDER ] : 'priority_order' ,
44
+ [ SignatureType . SIGN_UNISWAPX_V2_ORDER ] : 'uniswap_x_v2' ,
45
+ [ SignatureType . SIGN_UNISWAPX_ORDER ] : 'uniswap_x' ,
46
+ }
47
+
48
+ export function logUniswapXSwapFinalized (
49
+ hash : string | undefined ,
28
50
orderHash : string ,
29
51
chainId : number ,
30
52
analyticsContext : ITraceContext ,
53
+ signatureType : SignatureType ,
54
+ status : UniswapXOrderStatus . FILLED | UniswapXOrderStatus . CANCELLED | UniswapXOrderStatus . EXPIRED ,
31
55
) {
32
56
const hasSetSwapSuccess = timestampTracker . hasTimestamp ( SwapEventType . FirstSwapSuccess )
33
57
const elapsedTime = timestampTracker . setElapsedTime ( SwapEventType . FirstSwapSuccess )
34
58
35
- sendAnalyticsEvent ( SwapEventName . SWAP_TRANSACTION_COMPLETED , {
36
- routing : 'uniswap_x_v2' ,
59
+ const event =
60
+ status === UniswapXOrderStatus . FILLED
61
+ ? SwapEventName . SWAP_TRANSACTION_COMPLETED
62
+ : SwapEventName . SWAP_TRANSACTION_FAILED
63
+
64
+ sendAnalyticsEvent ( event , {
65
+ routing : SIGNATURE_TYPE_TO_SWAP_ROUTING [ signatureType ] ,
37
66
order_hash : orderHash ,
38
67
transactionOriginType : TransactionOriginType . Internal ,
39
68
// We only log the time-to-swap metric for the first swap of a session,
@@ -47,27 +76,3 @@ export function logUniswapXSwapSuccess(
47
76
...analyticsContext ,
48
77
} )
49
78
}
50
-
51
- export function logSwapQuoteRequest (
52
- chainId : number ,
53
- routerPreference : RouterPreference | typeof INTERNAL_ROUTER_PREFERENCE_PRICE ,
54
- isQuickRoute ?: boolean ,
55
- ) {
56
- let performanceMetrics = { }
57
- if ( routerPreference !== INTERNAL_ROUTER_PREFERENCE_PRICE ) {
58
- const hasSetSwapQuote = timestampTracker . hasTimestamp ( SwapEventType . FirstQuoteFetchStarted )
59
- const elapsedTime = timestampTracker . setElapsedTime ( SwapEventType . FirstQuoteFetchStarted )
60
- performanceMetrics = {
61
- // We only log the time_to_first_quote_request metric for the first quote request of a session.
62
- time_to_first_quote_request : hasSetSwapQuote ? undefined : elapsedTime ,
63
- time_to_first_quote_request_since_first_input : hasSetSwapQuote
64
- ? undefined
65
- : timestampTracker . getElapsedTime ( SwapEventType . FirstQuoteFetchStarted , SwapEventType . FirstSwapAction ) ,
66
- }
67
- }
68
- sendAnalyticsEvent ( SwapEventName . SWAP_QUOTE_FETCH , {
69
- chainId,
70
- isQuickRoute : isQuickRoute ?? false ,
71
- ...performanceMetrics ,
72
- } )
73
- }
0 commit comments