Docs

ThirdwebProviderProps

interface ThirdwebProviderProps<TChains extends Chain[]>
  extends Omit<
    ThirdwebProviderCoreProps<TChains>,
    "createWalletStorage" | "supportedWallets" | "theme" | "signerWallet"
  > {
  locale: ThirdwebLocale;
  signer: Signer;
  supportedWallets: WalletConfig<any>[];
  theme: ThemeObjectOrType;
}