Solidity Error Decoder
Decode Solidity revert data into human-readable error messages. Supports Error(string), Panic(uint256) codes, and custom errors.
Solidity Panic Codes Reference
| Code | Description |
|---|---|
| 0x00 | Generic compiler panic |
| 0x01 | Assert condition failed |
| 0x11 | Arithmetic overflow or underflow |
| 0x12 | Division or modulo by zero |
| 0x21 | Conversion to invalid enum value |
| 0x22 | Incorrectly encoded storage byte array |
| 0x31 | Pop on empty array |
| 0x32 | Array index out of bounds |
| 0x41 | Too much memory allocated |
| 0x51 | Called zero-initialized function pointer |