Type Alias Web3Config

Web3Config: {
    blockExplorer: "https://basescan.org";
    chainId: number;
    contracts: {
        [name: string]: ContractConfig;
    };
    name: string;
    thirdweb: {
        clientId: string;
        metadata: AppMetadata;
    };
}