features
parameter in the createAppKit
function.
true
undefined
displays everything. Set it to false
to disable this feature. You can also pass an empty array to disable it.socials
are enabled, it will show a button that directs you to a new screen displaying the wallet options. Default true
emailShowWallets
option in the features
parameter, you can control the initial connect screen behavior:
emailShowWallets: true
: When this option is enabled, the initial connect screen will display the available wallet options directly to the user. This allows users to choose their preferred wallet immediately.emailShowWallets: false
: If this option is disabled, the initial connect screen will show a button instead. When the user clicks this button, they will be directed to a new screen that lists all the available wallet options. This can help simplify the initial interface and reduce visual clutter.socials
option in the features
parameter, you can control the amount of social providers you want to show on the connect screen:
socials: ['google']
: When you only set one social provider, it will give you a button with `connect with provider.socials: ['google', 'discord']
: When you set 2 social provider, it will give you 2 buttons next to each other with the logo of the social provider socials: ['google', 'x', 'discord', 'apple', 'github']
: When you set more than 2 social providers, the first provider in the array will get a button with connect with provider
. The other providers will get a button with the logo of the social provider next to each other.socials: []
or socials: false
: When you want to disable social logins. email: false
: When you want to disable email login.allWallets
option inside the createAppKit
function, you can control whether if and when you want to display all wallets.
allWallets: 'HIDE'
: When you do not want to display all wallets.allWallets: 'SHOW'
: When you want to display all wallets.allWallets: 'ONLY_MOBILE'
: When you want to display all wallets only on a mobile device.<client-only>
components to avoid SSR issues: