Forge
Inspect
List out all the methods and function selectors in a contract
Inspect contract and view storage layout
Create .gas-snapshot for all tests
Contract Verification
If automatic contract verification fails during deployment it can be performed manually using forge.
--watch
leaves the terminal waiting for a status confirmation reply.If constructor arguments are required they can be encoded using
cast
e.g for a constructor requiring a single address:
Then use that
cast
output to add--constructor-args
to the end of theforge verify-contract
command.
Last updated