@solace-fi/sdk-nightly
Version:
Note - Unstable nightly build, documentation not up-to-date for nightly build
12 lines (11 loc) • 435 B
TypeScript
import { Network } from "../types";
export declare const NETWORKS: Network[];
export declare const NETWORKS_MAPPING: {
[chainId: number]: Network;
};
export declare const isNetworkSupported: (chainID: number) => boolean;
export declare const foundNetwork: (chainID: number) => Network | undefined;
export declare const mainnetChains: Network[];
export declare const DEFAULT_ENDPOINT: {
[chainID: number]: string;
};