Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Connect to v1.1.6 #1188

Merged
merged 7 commits into from
Nov 25, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix tests
  • Loading branch information
yuli-ferna committed Nov 22, 2024
commit a4eacd3eb0ee5cf652b4793d332334dc67476f4e
2 changes: 1 addition & 1 deletion apps/connect/src/providers/telemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const eventHandler = (e: WormholeConnectEvent) => {
// Convert WormholeConnectEvent to Attributes
const isTransferError =
e.type === "transfer.error" || e.type === "transfer.redeem.error";
const amount = sdkAmount.whole(e.details.amount as sdkAmount.Amount);
const amount = typeof e.details.amount === 'number' ? e.details.amount : sdkAmount.whole(e.details.amount as sdkAmount.Amount);
const attributes: { [key: string]: string | number | undefined } = {
fromChain: e.details.fromChain.toString(),
toChain: e.details.toChain.toString(),
Expand Down
Loading