forge install
Compile contracts:
forge build
Run tests with:
forge test -vv (basic test in local network)
forge test -vvv (test with traces in local network)
forge test -vv --fork-url {RPC_URL} (basic test in forked network)
forge test -vvv --fork-url {RPC_URL} (test with traces in forked network)
forge test -vvv --watch (auto-compiles and makes a generic screen to watch execution with traces)
forge bind (rust bindings created in the project)
forge inspect "contract.sol" assembly (assembly output for the contract)