Prefer Unstructured Storage for Upgradeable Contracts

Linear storage, which is the default way to manage storage variables, is intuitive but has limitations. When combined with inheritance, it requires us to maintain the well-known (and some would say infamous) __gap arrayarrow-up-right. Managing this array increases complexity and makes audits more challenging.

A proposed alternative is to use EIP-7201arrow-up-right storage slots, which can offer greater flexibility. However, this approach should be used with caution: variable names should be uniquely chosen and consistently referenced. Utilizing spelling checkersarrow-up-right can help maintain naming consistency and reduce potential issues.

Last updated