Verifying with Foundry#

Foundry is a smart contract development toolchain and supports X Layer.

You can visit here to get started. The tutorial below will also guide you to verify your smart contract with Foundry.

Important notes#

  1. After you deploy your contract code, make sure to wait at least one minute before verifying it.

Verify by using Foundry#

Example#

  1. Verify a smart contract with the forge verify-contract command.

Note that you must provide the following:

  • The smart contract address
  • The contract name or the pathway to the smart contract such as <path>:<contractname>.
  • The verify-url in the following format. You can find the chainShortName here.
https://www.oklink.com/api/v5/explorer/contract/verify-source-code-plugin/{chainShortName} 

The full command looks like:

javascript
forge verify-contract <the_contract_address>
      src/MyToken.sol:MyToken  
      --verifier oklink 
      --verifier-url oklinkverifyUrl

  1. In case of an Etherscan verification, you must also provide your Etherscan API key, either by passing it as an argument or setting ETHERSCAN_API_KEY.

  2. Check your verification results. It is recommended that you use the --watch flag along with the verify-contract command in order to poll for the verification result.

If the --watch flag was not supplied, you can also check the verification status with the forge verify-check command:

forge verify-check --chain 11155111 --verifier oklink --verifier-url https://www.oklink.com/api/v5/explorer/contract/verify-source-code-plugin/{chainShortName} <GUID>