UNPKG

eth-hooks2

Version:

A set of hooks to turbocharge buidling

17 lines 402 B
/** * #### Summary * A type that describes the basics of a network for applications. e.g. mainnet, ropsten, rinkeby, etc. * * @category Models */ export declare type TNetworkInfo = { name: string; chainId: number; rpcUrl: string; color: string; faucet?: string; blockExplorer: string; price?: number; gasPrice?: number; }; //# sourceMappingURL=networkTypes.d.ts.map