@matterlabs/hardhat-zksync-verify
Version:
Hardhat plugin to verify smart contracts for the ZKsync network
21 lines (19 loc) • 602 B
text/typescript
import { ChainConfig } from '@nomicfoundation/hardhat-verify/types';
export const builtinChains: ChainConfig[] = [
{
network: 'zksyncmainnet',
chainId: 324,
urls: {
apiURL: 'https://zksync2-mainnet-explorer.zksync.io/contract_verification',
browserURL: 'https://explorer.zksync.io/',
},
},
{
network: 'zksyncsepolia',
chainId: 300,
urls: {
apiURL: 'https://explorer.sepolia.era.zksync.dev/contract_verification',
browserURL: 'https://sepolia.explorer.zksync.io/',
},
},
];