✔️Verifying Your Smart Contracts

In here we demonstrate on how you can verify smart contracts in blockscout

Verifying a smart contract involves confirming that the code deployed on the blockchain matches the source code provided by the developer. This verification process ensures transparency and trust, as it allows all users to see the source code in clear text. By making the source code publicly accessible, users can independently verify the contract’s functionality and security, fostering greater confidence in the decentralized application’s integrity.

Using Forge Foundry

forge verify-contract <contract address> src/SomeContract.sol:SomeContract --verifier blockscout --verifier-url https://rpc.camp-network-testnet.gelato.digitalurl/api 

After verifying you should see that your smart contract has the green checkmark

Last updated