UNPKG

@oasisprotocol/sapphire-paratime

Version:
91 lines 2.4 kB
/** * This environment variable allows for the sapphire-localnet port to be * overridden via the command-line. This is useful for debugging with a proxy. * * Note: this will fail gracefully in-browser */ export declare const SAPPHIRE_LOCALNET_HTTP_PROXY_PORT: number; export declare const SAPPHIRE_LOCALNET_HTTP_PROXY_HOST: string | number; export declare const NETWORKS: { [x: number]: { chainName: string; chainId: number; defaultGateway: string; rpcUrls: string[]; nativeCurrency: { name: string; symbol: string; decimals: number; }; blockExplorerUrls: string[]; runtimeId: string; }; mainnet: { chainName: string; chainId: number; defaultGateway: string; rpcUrls: string[]; nativeCurrency: { name: string; symbol: string; decimals: number; }; blockExplorerUrls: string[]; iconUrls: string[]; runtimeId: string; }; testnet: { chainName: string; chainId: number; defaultGateway: string; rpcUrls: string[]; nativeCurrency: { name: string; symbol: string; decimals: number; }; blockExplorerUrls: string[]; iconUrls: string[]; runtimeId: string; }; localnet: { chainName: string; chainId: number; defaultGateway: string; rpcUrls: string[]; nativeCurrency: { name: string; symbol: string; decimals: number; }; blockExplorerUrls: string[]; runtimeId: string; }; pontusXTestnet: { chainName: string; chainId: number; defaultGateway: string; rpcUrls: string[]; nativeCurrency: { name: string; symbol: string; decimals: number; }; blockExplorerUrls: string[]; runtimeId: string; }; pontusXDevnet: { chainName: string; chainId: number; defaultGateway: string; rpcUrls: string[]; nativeCurrency: { name: string; symbol: string; decimals: number; }; blockExplorerUrls: string[]; runtimeId: string; }; }; //# sourceMappingURL=networks.d.ts.map