Connect
Setup
By default, the SDK will authenticate all users which means users will need to sign when logging in. This page describes how you can remove the authentication step and allow users to just connect their wallets to log into your site.
Usage
initialAuthenticationMode (optional)
If you want to skip signing a message and just connect, then set the initialAuthenticationMode
to connect-only
.
import { useDynamicContext } from "@dynamic-labs/sdk-react";
<DynamicContextProvider
settings={{
initialAuthenticationMode: 'connect-only',
...
}}
>
{...}
</DynamicContextProvider>
import { useDynamicContext } from "@dynamic-labs/sdk-react";
<DynamicContextProvider
settings={{
initialAuthenticationMode: 'connect-and-sign', // this is the default option
...
}}
>
{...}
</DynamicContextProvider>
enableVisitTrackingOnConnectOnly (optional)
If you are using the connect-only
mode, then you also have the option to disable visitor tracking by setting enableVisitTrackingOnConnectOnly
to false.
If you set this to false
then we will not track visitors. Note that you will not be able to see visitor information in our visitors table or analytics page.
import { useDynamicContext } from "@dynamic-labs/sdk-react";
<DynamicContextProvider
settings={{
initialAuthenticationMode: 'connect-only',
enableVisitTrackingOnConnectOnly: false,
...
}}
>
{...}
</DynamicContextProvider>
User Management & Analytics
Any user who connect, but does not authenticate, will appear in your dashboard as a Visitor
. You'll be able to see them in your user management table or in analytics under as Visitors
.
Updated about 1 month ago