Skip to content

Commit

Permalink
fix(ampli): quoteTimestamp precision (#867)
Browse files Browse the repository at this point in the history
  • Loading branch information
dohaki authored Oct 12, 2023
1 parent 81f8989 commit 843a516
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/amplitude.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ export function generateTransferQuote(
lpFeeTotal: formatTokens(fees.lpFee.total),
lpFeeTotalUsd: usdEquivalentString(fees.lpFee.total),
quoteLatencyMilliseconds: fees.quoteLatency.toString(),
quoteTimestamp: String(fees.quoteTimestampInMs ?? Date.now()),
quoteTimestamp: String(fees.quoteTimestamp),
recipient: toAddress || "not connected",
relayFeePct: formatWeiEtherPct(fees.relayerFee.pct),
relayFeeTotal: formatTokens(fees.relayerFee.total),
Expand Down

1 comment on commit 843a516

@vercel
Copy link

@vercel vercel bot commented on 843a516 Oct 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

goerli-frontend-v2 – ./

goerli-frontend-v2-git-master-uma.vercel.app
goerli-frontend-v2-uma.vercel.app
goerli-frontend-v2.vercel.app

Please sign in to comment.