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
We need measure gas consumption separately for each test. Now hardhat-gas-reporter allows access only to maximum, minimum and average gasUsage value threw all TestPlaceholderVerifierl.verify calls.
We need a good way to measure and output gas consumption for different placeholder parts, such as "gate argument", "permutation argument", "lpc verification" e t.c.
The text was updated successfully, but these errors were encountered:
For finer control over gas profiling we can use hardhat - console.log to output gasLeft() on calls.
Since we do not wish to push console.logs to production, we can evaluate either of the two approaches.
Use a hardhat plugin such as pre-processor to remove logs before push to production. Commit all profiling on main
Maintain a new branch which has profiling enabled via logs by default.
The text was updated successfully, but these errors were encountered: