@web3auth-mpc/ui
Version:
Ui modal for web3Auth
11 lines (10 loc) • 432 B
TypeScript
import { CustomChainConfig } from "@web3auth-mpc/base";
interface SwitchNetworkProps {
currentChainConfig: CustomChainConfig;
newChainConfig: CustomChainConfig;
appOrigin: string;
onSwitchNetwork: (currentChainId: string, newChainId: string) => void;
onCancelNetwork: () => void;
}
declare function SwitchNetwork(props: SwitchNetworkProps): import("react/jsx-runtime").JSX.Element;
export default SwitchNetwork;