npm i @nomicfoundation/hardhat-verifyhardhat.config.ts, import the plugin.import "@nomicfoundation/hardhat-verify";config:HardhatUserConfig = { solidity: "0.8.28", networks: { sepolia: { url: `https://1rpc.io/sepolia`, accounts: [SEPOLIA_PRIVATE_KEY], }, }, etherscan: { apiKey: "YourEtherscanApiKey" }};npx hardhat ignition deploy ./ignition/modules/Lock.ts --network sepolia --verifynpx hardhat verify --network sepolia 0xdCBdBAA8404554502B433106e62728B659aCfE3bcustomChain inhardhat.config.ts.etherscan: { apiKey:"YourEtherscanApiKey", customChains: [ { network:"sonic", chainId:146, urls: { apiURL:"https://api.etherscan.io/v2/api", browserURL:"https://sonicscan.org" } }, { network:"katana", chainId:146, urls: { apiURL:"https://api.etherscan.io/v2/api", browserURL:"https://sonicscan.org" } } ]}hardhat.config.ts file — good riddance to the longcustomChains entries for each explorer.Update your config to a single EtherscanapiKey entry as per above.This open source integration was shipped by@antico5and the Hardhat team.