export declare const ALLOWED_ENVIRONMENTS: readonly ["development", "stage", "production"]; export declare const DEFAULT_RPCS: string[]; export declare function getRandomRpc(): string; export declare const USDT_SYMBOL_DEV = "USDTm"; export declare const USDT_SYMBOL_PROD = "USD\u20AE0"; export declare const ENV_CONFIG: { readonly development: { readonly apiUrl: "https://dev-api.rain.one"; readonly subgraphUrl: "https://gateway.thegraph.com/api/subgraphs/id/6r5tgnziCSykNHkD3yrEz1wohCz2NWqADtSH7azLmTh1"; readonly market_factory_address: "0x05b1fd504583B81bd14c368d59E8c3e354b6C1dc"; readonly dispute_initial_timer: number; readonly usdt_symbol: "USDTm"; readonly usdt_token: `0x${string}`; readonly rain_token: `0x${string}`; }; readonly stage: { readonly apiUrl: "https://stg-api.rain.one"; readonly subgraphUrl: "https://gateway.thegraph.com/api/subgraphs/id/4eW9fojV2FcAm8xvhW4SGHoy17VEPmKMqz3K3b6PEhHR"; readonly market_factory_address: "0xD4900CA167228365806FBA4cB21f7EAe8b6d96BE"; readonly dispute_initial_timer: number; readonly usdt_symbol: "USD₮0"; readonly usdt_token: `0x${string}`; readonly rain_token: `0x${string}`; }; readonly production: { readonly apiUrl: "https://prod-api.rain.one"; readonly subgraphUrl: "https://gateway.thegraph.com/api/subgraphs/id/poBixDnF3hyafnLs9i1qkCpFppAAgmmWYgtsXrfYAWQ"; readonly market_factory_address: "0xA8640B62D755e42C9ed6A86d0fc65CE09e31F264"; readonly dispute_initial_timer: number; readonly usdt_symbol: "USD₮0"; readonly usdt_token: `0x${string}`; readonly rain_token: `0x${string}`; }; };