smartcontractkit / huff-starter-kit

A template repo to work with huff smart contracts and learn about low level EVM opcodes. Also Horse ♘.
101 stars 13 forks source link

Use forge-std cheats/vm #6

Closed giovannidisiena closed 1 year ago

giovannidisiena commented 1 year ago

It is not necessary to have an abstract cheats utility contract since forge-std/Test.sol gives access to Hevm cheat codes via the vm instance.

Forge Std also contains a collection of helpful wrappers around cheat codes to make them more user-friendly.

PatrickAlphaC commented 1 year ago

Thank you!