Verify Contracts
Last updated
Last updated
Once verified, a smart contract or token contract's source code becomes publicly available and verifiable, creating transparency and trust.
There are several ways to verify a contract, programmatically or manually on the UI.
Go the the page
Enter in the contract address you received during deployment. The dropdown will show you several available verification options. Select the one you would like to use and continue.
Solidity (Flattended source code)
Solidity (Standard JSON Input)
Contract Address: The 0x address supplied on contract creation (added above)
Is Yul Contract: Select if the contract is coded in Yul for efficiency.
Include Nightly Builds: Select if you want to show nightly builds.
Compiler: derived from the first line in the contract pragma solidity X.X.X. Use the corresponding compiler version rather than the nightly build.
EVM Version: Select the correct EVM version if known, otherwise use default.
Add Contract Libraries: Enter the name and 0x address for any required libraries called in the .sol file. You can add multiple contracts with the "+" button.
Click the Verify and Publish button.
If all goes well, you will see a checkmark next to Code in the code tab, and an additional tab called Read Contract. The contract name will now appear in BlockScout with any transactions related to your contract.
Include nightly builds. You can choose Yes or No depending on your compiler.
Compiler. Choose the compiler version used to compile your smart contract. If you selected yes for nightly builds, use the compiler version rather than the build.
Standard Input JSON. Upload your Standard Input JSON file. File should follows solidity format and all the sources must be in Literal Content format, not a URL.
Click the Verify & publish button and wait for the response.
To verify contracts please follow the Verifying a Smart Contract guide to learn the different options.
In particular, to be able to verify the contracts programatically we will need following steps:
1- Install @nomiclabs/hardhat-etherscan package:
2- Import into hardhat.config.ts
3- Update hardhat.config.ts following:
4- Verify the contract Once the config is updated, you can verofy the contract with
Enter the Solidity Contract Code: You may need to flatten your solidity code if it utilizes a library or inherits dependencies from another contract. We recommend hardhat or the POA solidity flattener. To flatten your contract using hardhat, see