Skip to main content
This is an enterprise-only feature. Please contact us to enable.
On the web, you link users to the hosted Connections page and read the result off the redirect URL you control. There is no SDK to install. The web redirect path is connect-only: Connections returns the wallet’s public address. It does not request a signature or transaction, so it proves the user can present an address, not that they control it. For proof of ownership, add a sign-in step. Open Connections in the user’s browser (or a web view) with a redirect_uri you control, and an optional nonce.
link to open

2. Receive the result

After a successful connection, Connections redirects the browser to your redirect_uri with the result appended as query parameters.
redirect we send

3. Read it on your callback

On your redirect_uri, read the parameters off the URL.
callback.ts
The web redirect path proves the user can present an address, not that they control it. For proof of ownership, add a sign-in step. Because redirect_uri is caller-supplied, allow-list the hosts you accept. See Securing the redirect.
Last modified on August 13, 2026