-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support tips for public mempool submission (#3041)
# Description We had issues with submitting solutions on arbitrum whenever the gas prices went above the 0.01 Gwei it usually is. To address that we configured an additional tip. That worked well while we submitted via `merkle`. Since we stopped using `merkle` we see a bunch of [errors](https://aws-es.cow.fi/_dashboards/app/data-explorer/discover#?_a=(discover:(columns:!(log,log_level),isDirty:!f,sort:!()),metadata:(indexPattern:'86e4a5a0-4e4b-11ef-85c5-3946a99ed1a7',view:discover))&_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:'2024-09-08T19:45:08.598Z',to:'2024-10-08T01:21:43.919Z'))&_q=(filters:!(),query:(language:kuery,query:'%22gas:%20max%20fee%20per%20gas%20less%20than%20block%20base%20fee%22%20AND%20%22arbitrum%22'))) indicating that we provide a too low gas price for the transactions. Turns out we only have the ability to configure additional tips using private mempools but not with the public mempool. That's way we stopped seeing those errors while `merkle` was active. # Changes Added the ability to also configure gas price tips when submitting via public mempool. Will create the necessary follow up PR afterwards. ## How to test Compiler
- Loading branch information
1 parent
ee6423e
commit bcd024e
Showing
8 changed files
with
60 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters