no confirmation popup when doing a uniswap #4
Labels
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: sneak/AutistMask#4
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The uniswap UI shows "confirm in wallet" but no popover nor extension toolbar popup appear. This is obviously a blocking bug. Fortunately, when clicking the extension icon in the toolbar, the window that opens is on the confirmation screen, and entering the password and confirming does work. However, the toolbar popup (not a popover) needs to open when the dapp requests a signature.
Check that, now even opening the toolbar popup doesn't show the swap confirmation request. Please debug.
Looking into this — checking the popup/confirmation flow now.
Found it. When approval IDs were changed from sequential integers to
crypto.randomUUID()strings, the popup still calledparseInt(approvalId, 10)on the URL param — which turns a UUID intoNaN. Every approval lookup silently fails.One-line fix in PR #18: #18