@oasisprotocol/sapphire-paratime
Version:
The Sapphire ParaTime Web3 integration library.
65 lines • 1.75 kB
TypeScript
/**
* 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;
};
};
//# sourceMappingURL=networks.d.ts.map