Variable envConst

env: Readonly<{
    PUBLIC_ALCHEMY_KEY?: string;
    PUBLIC_APP_DESCRIPTION?: string;
    PUBLIC_APP_LOGO?: string;
    PUBLIC_APP_NAME: string;
    PUBLIC_APP_URL?: string;
    PUBLIC_INCLUDE_TESTNETS: boolean;
    PUBLIC_INFURA_KEY?: string;
    PUBLIC_NATIVE_TOKEN_ADDRESS: string;
    PUBLIC_RPC_ARBITRUM?: string;
    PUBLIC_RPC_ARBITRUM_SEPOLIA?: string;
    PUBLIC_RPC_BASE?: string;
    PUBLIC_RPC_BASE_SEPOLIA?: string;
    PUBLIC_RPC_GNOSIS?: string;
    PUBLIC_RPC_GNOSIS_CHIADO?: string;
    PUBLIC_RPC_MAINNET?: string;
    PUBLIC_RPC_OPTIMISM?: string;
    PUBLIC_RPC_OPTIMISM_SEPOLIA?: string;
    PUBLIC_RPC_POLYGON?: string;
    PUBLIC_RPC_POLYGON_MUMBAI?: string;
    PUBLIC_RPC_SEPOLIA?: string;
    PUBLIC_USE_DEFAULT_TOKENS: boolean;
    PUBLIC_WALLETCONNECT_PROJECT_ID: string;
}> = ...

Represents the environment configuration object.

zod-checked and typed environment variables. Here you should define all the environment variables that your application uses.