Skip to main content

Contract Verification

Once your contract is deployed, you can verify it using a number of popular services. Doing so will let you users have confidence that your contract does what you claim, and will allow you to interact with it using a similar interface to what you used in Remix.


Objectives

By the end of this lesson you should be able to:

  • Verify a contract on the Base Sepolia testnet and interact with it in BaseScan

Verify the Contract

Make sure you still have the address of the contract you deployed in the last article copied to the clipboard.

You can interact with your deployed contract using Remix, the same as before, but it's also possible to interact with it through BaseScan. Paste your address in the search field to find it.

On this page, you can review the balance, information about, and all the transactions that have ever occurred with your contract.

Click the Contract tab in the main panel. At the top is a message asking you to Verify and Publish your contract source code.

Verify

Verifying your contract maps the names of your functions and variables to the compiled byte code, which makes it possible to interact with the contract using a human-readable interface.

Click the link. Your contract address is already entered.

Under Please select Compiler Type choose _Solidity (Single file)

For Please Select Compiler Version select the version matching the pragma at the top of your source file. Our examples are currently using v0.8.17+commit.8df45f5f.

For Please select Open Source License Type pick the license that matches what you selected for your contract as the SPDX-License-Identifier. Pick None if you followed the Solidity-recommended practice of using UNLICENSED.

On the next page, copy and paste your source code in the window. Verify that you are not a robot, and click Verify and Publish. You should see a success message.

Success

Click the linked address to your contract to return to the contract page. You'll now see your code!

tip

If you have imports, you'll need to right click on the name of the file and choose Flatten. Submit the newly generated filename_flattened.sol for verification.

Interact with the Contract

You can now interact with your contract using BaseScan. Click the Read Contract button. Both of your functions will be listed here and can be tested using the web interface.

You won't have anything under Write Contract because this contract doesn't have any functions that save data to state.


Conclusion

With your contracts verified, you can interact with them using online tools and your users can be secure that your code does what you claim.


We use cookies and similar technologies on our websites to enhance and tailor your experience, analyze our traffic, and for security and marketing. You can choose not to allow some type of cookies by clicking . For more information see our Cookie Policy.