UNPKG

hardhat-deployed-records

Version:
18 lines (17 loc) 730 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.blockchainExplorer = void 0; const explorers = new Map() .set(1, "https://etherscan.io/address/") .set(5, "https://goerli.etherscan.io/address/") .set(11155111, "https://sepolia.etherscan.io/address/") .set(56, "https://bscscan.com/address/") .set(137, "https://polygonscan.com/address/") .set(1284, "https://moonscan.io/address/") .set(10, "https://optimistic.etherscan.io/address/") .set(59144, "https://lineascan.build/address/") .set(42161, "https://arbiscan.io/address/"); function blockchainExplorer(chainId) { return explorers.get(chainId) || ""; } exports.blockchainExplorer = blockchainExplorer;