Found Academy useful? A $5 donation by May 14 helps us ship more, faster. Every donor counts (QF matching).

Donate
All glossary terms
Security

CEI Pattern

Checks-Effects-Interactions pattern. A Solidity best practice where you first validate inputs (Checks), then update state (Effects), then make external calls (Interactions). This ordering prevents reentrancy attacks because state is already updated before any external code executes.

Related terms in Security