You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -67,6 +67,40 @@ Run smart contract test with `yarn hardhat:test`
67
67
- Edit your deployment scripts in `packages/hardhat/deploy`
68
68
69
69
70
+
## Contract Verification
71
+
72
+
After deploying your smart contract to a testnet or mainnet, you can verify it on block explorers like Etherscan or Sourcify. This makes your contract source code publicly available and allows users to interact with it through the block explorer.
73
+
74
+
### Sourcify Verification (Recommended)
75
+
76
+
Scaffold-ETH 2 is configured to use Sourcify for contract verification by default. Sourcify is a decentralized verification platform that supports multiple block explorers.
77
+
78
+
#### For Monad Testnet
79
+
80
+
1. Deploy your contract to Monad testnet:
81
+
```bash
82
+
yarn deploy --network monadTestnet
83
+
```
84
+
85
+
2. Verify your contract using the hardhat-deploy plugin:
0 commit comments