We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdb92b3 commit 67c55dcCopy full SHA for 67c55dc
crates/builder/src/sender/mod.rs
@@ -257,6 +257,10 @@ fn parse_known_call_execution_failed(message: &str, code: i64) -> Option<TxSende
257
if lowercase_message.contains("insufficient funds") {
258
return Some(TxSenderError::InsufficientFunds);
259
}
260
+ // Aribtrum sequencer
261
+ if lowercase_message.contains("condition not met") {
262
+ return Some(TxSenderError::ConditionNotMet);
263
+ }
264
// Check error codes before checking the message
265
// The error code is -32003 or -32005 when condition is not met: https://eips.ethereum.org/EIPS/eip-7796
266
if code == -32003 || code == -32005 {
0 commit comments