Smart Contract Security · question
Q.02 of 15
Explain the difference between `require()`, `assert()`, and `revert()` in Solidity and their security implications.
← All Smart Contract Security questions
Re-explain
These are Solidity's error handling mechanisms with different use cases:
require(condition, "message"):
- Used for input validation and external conditions
- Refunds remaining gas when condition fails
- Should be used for user input validation and external contract calls
assert(condition):
- Used for internal consistency checks and invariants
- Consumes all remaining gas when condition fails
- Should only fail if there's a bug in the contract
revert("message"):
- Unconditionally reverts with a custom message
- Refunds remaining gas
- Used for complex conditional logic
function withdraw(uint amount) external {
require(amount > 0, "Amount must be positive"); // Input validation
require(balances[msg.sender] >= amount, "Insufficient balance"); // State validation
balances[msg.sender] -= amount;
assert(balances[msg.sender] >= 0); // Internal invariant check
if (!payable(msg.sender).send(amount)) {
revert("Transfer failed"); // Complex condition handling
}
}
Security Implication: Misusing assert() for input validation can lead to unnecessary gas consumption attacks.
Rewriting in plainer words…
This answer doesn't lend itself to a diagram - it reads best . No credits were charged.
The model's verdict: “”
This answer is explained by a shared concept diagram -
open →
Point the redraw:
How well did you know this?
AI:
Saved in this browser - sign in to keep your review list.
How should your speech become text?
Listening… your words appear above as you speak - tap Stop when you're done.
Recording · cr - tap Stop & transcribe when you're done.
Transcribing with AI…
Voice:
Keep going - a few more words and AI can grade it.
Interview lens
Likely follow-ups, what you can say, and the weak answers to avoid.
Pro · $10/mo
13 of 15 Smart Contract Security answers are gated.
Full answers, code samples, AI explanations - simpler, deeper, or as an interactive diagram. Cancel anytime.
-
Full answers + code
-
AI explain - simpler, deeper, or visualized
-
1,000 AI credits / month
-
Cancel anytime