diff --git a/src/pages/build/tutorials/deploying-a-smart-contract/foundry.mdx b/src/pages/build/tutorials/deploying-a-smart-contract/foundry.mdx index da4ea397..223974ef 100644 --- a/src/pages/build/tutorials/deploying-a-smart-contract/foundry.mdx +++ b/src/pages/build/tutorials/deploying-a-smart-contract/foundry.mdx @@ -156,12 +156,14 @@ forge script script/Deploy.s.sol:DeployScript --rpc-url $RPC_URL --broadcast --v ## Verifying Your Contract -If you want to verify your contract on Etherscan: +If you want to verify your contract on Blockscout: ```bash forge verify-contract src/InkContract.sol:InkContract \ --chain-id 763373 \ - --etherscan-api-key $BLOCKSCOUT_API_KEY + --verifier blockscout \ + --verifier-url https://explorer-sepolia.inkonchain.com/api \ + --verifier-api-key $BLOCKSCOUT_API_KEY ``` ## Additional Configuration