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
We should document the changes made to the safeTxGas with #274
When safeTxGas == 0 && gasPrice == 0 -> Sent along all available gas and does not invalidate nonce on failure
When safeTxGas > 0 && gasPrice == 0 -> Sent along all available gas and invalidates nonce on failure
When safeTxGas > 0 && gasPrice > 0 -> Sent along specified gas (safeTxGas) and invalidates nonce on failure
As safeTxGas specifies the minimum required gas that should be sent along it is possible to use 1 if you trust the executor and still want to invalidate the the nonce. When using a relayer (or any other untrusted executor) it is recommended to use a proper safeTxGas that corresponds to the gas that should be sent along with the execution.
The text was updated successfully, but these errors were encountered:
We should document the changes made to the safeTxGas with #274
When
safeTxGas == 0 && gasPrice == 0
-> Sent along all available gas and does not invalidate nonce on failureWhen
safeTxGas > 0 && gasPrice == 0
-> Sent along all available gas and invalidates nonce on failureWhen
safeTxGas > 0 && gasPrice > 0
-> Sent along specified gas (safeTxGas
) and invalidates nonce on failureAs
safeTxGas
specifies the minimum required gas that should be sent along it is possible to use1
if you trust the executor and still want to invalidate the thenonce
. When using a relayer (or any other untrusted executor) it is recommended to use a propersafeTxGas
that corresponds to the gas that should be sent along with the execution.The text was updated successfully, but these errors were encountered: