UNPKG

@hyperlane-xyz/sdk

Version:

The official SDK for the Hyperlane Network

16 lines 561 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, }; return byFamily[blockExplorer.family] ?? false; } //# sourceMappingURL=utils.js.map