You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use try/catch statements when interacting with external applications to avoid silent reverts without using assembly.
Motivation
To reduce the use of inline assembly and catch errors in the underlying call.
Specification
TBD.
Notice: Sometimes we read from an external contract with staticcall to ensure we cannot execute write operations. Using a try/catch statement will not always be possible in these instances.
Rationale
TBD.
The text was updated successfully, but these errors were encountered:
Summary
Use try/catch statements when interacting with external applications to avoid silent reverts without using assembly.
Motivation
To reduce the use of inline assembly and catch errors in the underlying call.
Specification
TBD.
Notice: Sometimes we read from an external contract with
staticcall
to ensure we cannot execute write operations. Using a try/catch statement will not always be possible in these instances.Rationale
TBD.
The text was updated successfully, but these errors were encountered: