UNPKG

@hyperlane-xyz/sdk

Version:

The official SDK for the Hyperlane Network

19 lines 691 B
import { ExplorerFamily } from '../metadata/chainMetadataTypes.js'; export function isEvmBlockExplorerAndNotEtherscan(blockExplorer) { if (!blockExplorer.family) { return false; } const byFamily = { [ExplorerFamily.Blockscout]: true, [ExplorerFamily.Etherscan]: false, [ExplorerFamily.Other]: false, [ExplorerFamily.Routescan]: true, [ExplorerFamily.Voyager]: false, [ExplorerFamily.ZkSync]: true, [ExplorerFamily.RadixDashboard]: false, [ExplorerFamily.TronScan]: false, [ExplorerFamily.Unknown]: false, }; return byFamily[blockExplorer.family] ?? false; } //# sourceMappingURL=utils.js.map