ethers.js/utils/networks.d.ts

14 lines
374 B
TypeScript

export declare type Network = {
name: string;
chainId: number;
ensAddress?: string;
};
export declare type Networkish = Network | string | number;
/**
* getNetwork
*
* Converts a named common networks or chain ID (network ID) to a Network
* and verifies a network is a valid Network..
*/
export declare function getNetwork(network: Networkish): Network;