You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because we included both a universal and a native link, the Wallet Connect Modal tries to use the native link first, which results in a system prompt: "Open this page in Foo". However, if we set native to an empty string or use the same universal link, that does not work as intended. This is because there is a small delay between the user action (selecting a wallet) and the triggering of the universal link. Apple changes the entitlement when there are such delays, and, instead of being redirected to the iOS app, the user is redirected to the web page that is associated with that universal link.
Describe the solution you'd like
Pairings/sessions should be created before selecting a wallet to avoid delays between the user action and the universal link trigger. If there's no native link defined, the universal link should be used as the primary link:
What problem does this new feature solve?
We want to use Universal Links with a custom mobile wallet that we defined in
mobileWallets
, as follows:Because we included both a
universal
and anative
link, the Wallet Connect Modal tries to use thenative
link first, which results in a system prompt: "Open this page in Foo". However, if we setnative
to an empty string or use the same universal link, that does not work as intended. This is because there is a small delay between the user action (selecting a wallet) and the triggering of the universal link. Apple changes the entitlement when there are such delays, and, instead of being redirected to the iOS app, the user is redirected to the web page that is associated with that universal link.Describe the solution you'd like
Pairings/sessions should be created before selecting a wallet to avoid delays between the user action and the universal link trigger. If there's no
native
link defined, theuniversal
link should be used as the primary link:The text was updated successfully, but these errors were encountered: