explorer-contract-verification
Installation
SKILL.md
Overview
Contract verification on Etherscan, Routescan, and Blockscout explorers using Foundry's forge verify-contract. Covers
standard Etherscan verification, unsupported chains via Etherscan V2 API, Routescan, Blockscout verification, proxy
patterns, and factory-created contracts.
When to Use
- Verify deployed smart contracts on Etherscan, Routescan, or Blockscout explorers
- Verify proxy contracts (ERC1967, UUPS)
- Verify factory-created contracts (CREATE2)
- Extract constructor arguments from deployment data
Prerequisites
Related skills
More from sablier-labs/evm-monorepo
foundry-testing
Write Foundry-based tests and scripts. Trigger phrases - foundry testing, write test, fuzz test, fork test, invariant test, deploy script, gas benchmark, coverage, or when working in tests/ or scripts/ directories.
1solidity-coding
Write production-quality Solidity contracts. Trigger phrases - write contract, implement function, add feature, add
1