-
bitcoin $87959.907984 USD
1.34% -
ethereum $2920.497338 USD
3.04% -
tether $0.999775 USD
0.00% -
xrp $2.237324 USD
8.12% -
bnb $860.243768 USD
0.90% -
solana $138.089498 USD
5.43% -
usd-coin $0.999807 USD
0.01% -
tron $0.272801 USD
-1.53% -
dogecoin $0.150904 USD
2.96% -
cardano $0.421635 USD
1.97% -
hyperliquid $32.152445 USD
2.23% -
bitcoin-cash $533.301069 USD
-1.94% -
chainlink $12.953417 USD
2.68% -
unus-sed-leo $9.535951 USD
0.73% -
zcash $521.483386 USD
-2.87%
How do you handle error-checking with require, assert, and revert?
Solidity's `require`, `revert`, and `assert` ensure secure smart contracts: use `require` for input validation, `revert` for custom errors, and `assert` for internal invariants.
Nov 14, 2025 at 05:19 pm
Understanding Error-Handling Mechanisms in Solidity
In the world of blockchain development, particularly within the Ethereum ecosystem, writing secure and reliable smart contracts is paramount. One of the core aspects of ensuring contract integrity involves proper error handling. Solidity provides several built-in functions to manage errors: require, revert, and assert. Each serves a distinct purpose and is used under specific circumstances to maintain logic correctness and prevent unintended behavior.
Using require for Input and Condition Validation
The require statement is primarily employed to validate inputs, external conditions, or state requirements before executing critical operations. It ensures that certain preconditions are met, such as sufficient balances, correct sender roles, or valid timestamps. If the condition inside a require statement evaluates to false, the transaction is reverted, and any changes made during execution are undone. Importantly, require refunds unused gas to the caller, making it efficient for validating user inputs.
- Use require to check function arguments like addresses or numerical values.
- Validate access control by confirming msg.sender has the appropriate role.
- Ensure time-based conditions are satisfied, such as checking block.timestamp against a deadline.
- Confirm token allowances or balances before transferring assets.
- Include descriptive strings in require statements to clarify the reason for failure.
Leveraging revert for Customized Error Handling
revert offers more granular control over error messages and conditions compared to require. While require automatically reverts when a condition fails, revert allows developers to trigger a revert at any point in the code with optional custom error messages. Since Solidity 0.8.4, developers can define custom error types using the error keyword, which saves gas by encoding errors more efficiently than string messages.
- Define custom errors using the error keyword to reduce gas costs on reverts.
- Call revert explicitly when complex logic determines an invalid state.
- Use structured error types like InvalidAddress() or InsufficientFunds(uint) for clarity.
- Trigger revert after detecting unexpected edge cases not covered by require.
- Combine revert with modifiers to centralize validation logic across multiple functions.
Applying assert for Internal Invariant Checks
assert is reserved for checking internal invariants—conditions that should never be false if the code is correctly implemented. It indicates a bug in the contract if triggered. Unlike require, assert consumes all remaining gas when it fails and should only be used to detect unrecoverable errors such as arithmetic overflows (prior to Solidity 0.8) or unexpected changes in stored data. With newer versions of Solidity, many arithmetic issues are handled automatically, reducing the need for manual asserts.
- Use assert to verify that a variable’s value remains within expected bounds after computation.
- Check that critical storage variables have not been corrupted during execution.
- Confirm unreachable code paths are indeed unreachable using assert(false).
- Avoid using assert for input validation or external conditions—it's meant for internal consistency.
- Understand that assert failures signal serious bugs requiring code fixes, not user corrections.
Frequently Asked Questions
What happens to gas when require fails?When a require statement fails, the transaction is reverted, and all state changes are rolled back. Unused gas is returned to the caller, minimizing cost for users who submit invalid inputs.
Can I use custom errors with require?No, require only accepts a boolean condition and an optional string message. To use custom error types defined with the error keyword, you must use revert instead.
Is assert still necessary in Solidity 0.8+?Its usage has diminished due to automatic overflow checks in Solidity 0.8 and above. However, it remains useful for verifying custom invariants or unexpected logical states that indicate a programming error.
Why choose revert over require?revert is chosen when you need to perform complex evaluations before deciding to abort execution or when leveraging custom errors for better readability and lower gas costs. It provides flexibility beyond the simple condition checking offered by require.
Disclaimer:info@kdj.com
The information provided is not trading advice. kdj.com does not assume any responsibility for any investments made based on the information provided in this article. Cryptocurrencies are highly volatile and it is highly recommended that you invest with caution after thorough research!
If you believe that the content used on this website infringes your copyright, please contact us immediately (info@kdj.com) and we will delete it promptly.
- Crypto Coaster: Bitcoin Navigates Intense Liquidation Hunt as Markets Reel
- 2026-02-01 00:40:02
- Bitcoin Eyes $75,000 Retest as Early February Approaches Amid Shifting Market Sentiment
- 2026-02-01 01:20:03
- Don't Miss Out: A Rare £1 Coin with a Hidden Error Could Be Worth a Fortune!
- 2026-02-01 01:20:03
- Rare £1 Coin Error Could Be Worth £2,500: Are You Carrying a Fortune?
- 2026-02-01 00:45:01
- Navigating the Crypto Landscape: Risk vs Reward in Solana Dips and the Allure of Crypto Presales
- 2026-02-01 01:10:01
- NVIDIA CEO Jensen Huang's Take: Crypto as Energy Storage and the Evolving Role of Tech CEOs
- 2026-02-01 01:15:02
Related knowledge
How to Execute a Cross-Chain Message with a LayerZero Contract?
Jan 18,2026 at 01:19pm
Understanding LayerZero Architecture1. LayerZero operates as a lightweight, permissionless interoperability protocol that enables communication betwee...
How to Implement EIP-712 for Secure Signature Verification?
Jan 20,2026 at 10:20pm
EIP-712 Overview and Core Purpose1. EIP-712 defines a standard for typed structured data hashing and signing in Ethereum applications. 2. It enables w...
How to Qualify for Airdrops by Interacting with New Contracts?
Jan 24,2026 at 09:00pm
Understanding Contract Interaction Requirements1. Most airdrop campaigns mandate direct interaction with smart contracts deployed on supported blockch...
How to Monitor a Smart Contract for Security Alerts?
Jan 21,2026 at 07:59am
On-Chain Monitoring Tools1. Blockchain explorers like Etherscan and Blockscout allow real-time inspection of contract bytecode, transaction logs, and ...
How to Set Up and Fund a Contract for Automated Payments?
Jan 26,2026 at 08:59am
Understanding Smart Contract Deployment1. Developers must select a compatible blockchain platform such as Ethereum, Polygon, or Arbitrum based on gas ...
How to Use OpenZeppelin Contracts to Build Secure dApps?
Jan 18,2026 at 11:19am
Understanding OpenZeppelin Contracts Fundamentals1. OpenZeppelin Contracts is a library of reusable, community-audited smart contract components built...
How to Execute a Cross-Chain Message with a LayerZero Contract?
Jan 18,2026 at 01:19pm
Understanding LayerZero Architecture1. LayerZero operates as a lightweight, permissionless interoperability protocol that enables communication betwee...
How to Implement EIP-712 for Secure Signature Verification?
Jan 20,2026 at 10:20pm
EIP-712 Overview and Core Purpose1. EIP-712 defines a standard for typed structured data hashing and signing in Ethereum applications. 2. It enables w...
How to Qualify for Airdrops by Interacting with New Contracts?
Jan 24,2026 at 09:00pm
Understanding Contract Interaction Requirements1. Most airdrop campaigns mandate direct interaction with smart contracts deployed on supported blockch...
How to Monitor a Smart Contract for Security Alerts?
Jan 21,2026 at 07:59am
On-Chain Monitoring Tools1. Blockchain explorers like Etherscan and Blockscout allow real-time inspection of contract bytecode, transaction logs, and ...
How to Set Up and Fund a Contract for Automated Payments?
Jan 26,2026 at 08:59am
Understanding Smart Contract Deployment1. Developers must select a compatible blockchain platform such as Ethereum, Polygon, or Arbitrum based on gas ...
How to Use OpenZeppelin Contracts to Build Secure dApps?
Jan 18,2026 at 11:19am
Understanding OpenZeppelin Contracts Fundamentals1. OpenZeppelin Contracts is a library of reusable, community-audited smart contract components built...
See all articles














