UNPKG

@forta/network

Version:

🌤️ A goodie to get chains common metadata.

17 lines (14 loc) 344 B
export type NetworkType = "Mainnet" | "Testnet" export interface NetworkProps { chainName: string shortName: string chainId: string chainDecimalId: number currency: string rpcUrl: string blockExplorerUrl: string type: NetworkType } export interface Network extends NetworkProps { getExplorerURL(txOrAddrr: string): string }