Skip to main content

Do Not Calculate Constants

Description

Due to how constant variables are implemented (replacements at compile-time), an expression assigned to a constant variable is recomputed each time that the variable is used, which wastes some gas.

Example Code

uint256 private constant MINIMUM_EQUITY = 1000 * ONE_DEC18;