ThirdwebProviderCoreProps
The possible props for the ThirdwebProvider.
type ThirdwebProviderCoreProps = {
activeChain:
| Chain
| (number & {})
| (string & {})
| TChains[number]["chainId"]
| TChains[number]["slug"];
authConfig: ThirdwebAuthConfig;
autoConnect: boolean;
autoConnectTimeout: number;
autoSwitch: boolean;
clientId: string;
createWalletStorage: CreateAsyncStorage;
dAppMeta: DAppMetaData;
queryClient: QueryClient;
sdkOptions: Omit<undefined | {}, "chains">;
secretKey: string;
signerWallet: WalletConfig<SignerWallet>;
storageInterface: IThirdwebStorage;
supportedChains: TChains;
supportedWallets: WalletConfig[];
theme: "light" | "dark";
};