Verify Smart Contracts

Overview

Smart contracts aim to be trustless, requiring users to trust the contract execution without depending on third parties. This is ensured through source code verification, allowing users to confirm that some source code matches the code executed on the IoTeX blockchain.

Source code verification differs from formal verification, which checks if the contract behaves as intended. Typically, "contract verification" refers to the former, focusing on the match between high-level source code and the blockchain's bytecode.

Verify using a UI

If you are the contract owner and would like to verify your contract using a UI, please go to the following page and follow the requested steps:

→ IoTeX Contract Verification UIarrow-up-right

Follow the guide below to verify multiple contracts using Hardhat:

Verify using Hardhat

In this tutorial, we will guide you through the entire process of verifying a smart contract using IoTeXscanarrow-up-right. Starting with contract creation, we'll then deploy it to the IoTeX testnet, and conclude by verifying the contract through Hardhatarrow-up-right.

Or you can refer this repository https://github.com/iotexproject/hardhat-verify-smaplearrow-up-right

Setting Up a Hardhat Project

  1. Install NodeJS: Ensure NodeJS is installed on your system.

  2. Install Hardhat: Execute the following command to install Hardhat:

    npm install --save-dev hardhat
  3. Initialize a Hardhat Project: To start a new Hardhat project, run:

    npx hardhat init

    For further details on creating smart contracts with Hardhat, refer to the official tutorial.

Coding the Contract

  1. Create the Contract File: Inside your Hardhat project directory, navigate to the contracts subfolder and create a file named greeter.sol. Insert the following code:

  2. Install OpenZeppelin Contracts: Run the following command to include the OpenZeppelin contracts package:

  3. Compile Your Contract: Compile the smart contract with:

Preparing for Deployment

  1. Setup IoTeX Testnet Account: Ensure you have a developer account on the IoTeX testnet with a balance of test IOTX tokens. Visit the IoTeX documentation for instructions on account creation and funding.

  2. Configure Hardhat: Modify hardhat.config.js to add the IoTeX network configurations, including your IoTeX Developer account private key:

  3. Deploy Script: Edit scripts/deploy.js with the following code to deploy your contract:

  4. Deploy the Contract: Deploy your contract to the IoTeX testnet by running:

  5. Note the contract address provided in the deployment log.

Verifying the Contract

  1. Install hardhat-verify Plugin: To enable contract verification, install the hardhat-verify plugin:

  2. Update Hardhat Configuration: Edit hardhat.config.js by importing hardhat-verify, configuring the verify and chainDescriptors objects like in the example below: note Note: While as API Key is required, any random text will work.

  3. Verify the Contract: Execute the following command, replacing <address> with your contract's address:

  4. Upon successful execution, you'll receive a link to your contract's verified code on IoTeXscan.

Last updated