Content
@
https://warpcast.com/~/channel/indonads
0 reply
0 recast
0 reaction
mjfendin
@mjfendin
How to Verify Smart Contract on Monad Testnet Deploy Smart Contract on Monad Testnet - After the smart contract is created, deploy it to the Monad testnet. - Record the TX hash and contract address that appears after the deploy. Example: TX Hash: 0xc62b...cf16 Contract Address: 0x80b357...5163c7d Check Contract Status with Block Explorer - Use Monad's block explorer to view your transaction details. https://testnet.monadexplorer.com You can track: - Contract creator - Creation time - TX details (status, block, etc) An example of what this looks like is the second image (Monad block explorer). Run the following command (example for Foundry framework): forge verify-contract \ 0x80b357D956664C2b8E70E887fFd2f77601635c7d \ src/Counter.sol:Counter \ --chain 10143 \ --verifier sourcify \ --verifier-url https://sourcify-api-monad.blockvision.org Make sure your smart contract address, path, and chain ID are correct.
3 replies
0 recast
6 reactions
mjfendin
@mjfendin
ubmit Verification: - After the command is executed, the verification process begins. - If successful, the text will appear: Contract successfully verified ✅ Advantages of Contract Verification: - Source code is publicly visible in the explorer. - Opens transparency and increases community trust. - Ready for integration with other audit tools & dapps! Source: SC: https://docs.monad.xyz/guides/deploy-smart-contract/foundry Veriv SC: https://docs.monad.xyz/guides/verify-smart-contract/foundry
0 reply
0 recast
3 reactions