WalletProviderProps: {
    autoConnect?: boolean;
    children: ReactNode;
    enableUnsafeBurner?: boolean;
    preferredWallets?: string[];
    stashedWallet?: StashedWalletConfig;
    storage?: StateStorage | null;
    storageKey?: string;
    theme?: Theme | null;
    walletFilter?: ((wallet) => boolean);
}

Type declaration

  • Optional autoConnect?: boolean

    Enables automatically reconnecting to the most recently used wallet account upon mounting.

  • children: ReactNode
  • Optional enableUnsafeBurner?: boolean

    Enables the development-only unsafe burner wallet, which can be useful for testing.

  • Optional preferredWallets?: string[]

    A list of wallets that are sorted to the top of the wallet list, if they are available to connect to. By default, wallets are sorted by the order they are loaded in.

  • Optional stashedWallet?: StashedWalletConfig

    Enables the Stashed wallet

  • Optional storage?: StateStorage | null

    Configures how the most recently connected to wallet account is stored. Set to null to disable persisting state entirely. Defaults to using localStorage if it is available.

  • Optional storageKey?: string

    The key to use to store the most recently connected wallet account.

  • Optional theme?: Theme | null

    The theme to use for styling UI components. Defaults to using the light theme.

  • Optional walletFilter?: ((wallet) => boolean)

    A filter function to select wallets that support features required for the dApp to function. This filters the list of wallets presented to users when selecting a wallet to connect from, ensuring that only wallets that meet the dApps requirements can connect.