For Link Mode to work fully, you also need to enable the One-Click Auth + Sign In With Ethereum feature.This feature is compatible only with EVM blockchains, so if you decide to included non-EVM blockchains Link Mode mechanism is going to be disabled internally.Check out SIWE basic example to try it out.
How to enable it:
- Add a Universal Link for your wallet in the Explorer tab of your Cloud project configuration, under the Mobile Linking section
-
Configure your
PairingMetadata
’sredirect:
object with that Universal Link -
Set the
linkMode
property totrue
:
How does it look without Link Mode?
Platform specifics:
- Ensure that you handle incoming Universal Links in the appropriate methods of
AppDelegate
orSceneDelegate
. - Ensure that you have enabled the Associated Domains Capability in your XCode project and that your Universal Link is properly configured. (Depending on the previous states of your Provisioning Profiles it may be necessary to update or create new ones)
- Update/Create your domain’s
.well-known/apple-app-site-association
file accordingly.
For a debugging guide, visit the Debugging Universal Links page.
You can check our Flutter’s AppKit sample AppDelegate file as a reference.