-
Notifications
You must be signed in to change notification settings - Fork 101
feat(finalizer): Support OFT retries #2755
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Tested predominantly on Monad, where inbound send() transactions need to specify a higher gas fee via the extraOptions field. This is not supported by protocol rebalancing, so this finalizer will be needed as a safety net.
| // Monad needs a boosted gas limit over the default 80k. The default may be lifted by LZ. @todo: Check. | ||
| const gas = { | ||
| [PRODUCTION_OFT_EIDs.MONAD]: 500000, | ||
| }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why 500k tho?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch - should be closer to 120k.
bmzig
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very nice
Tested predominantly on Monad, where inbound send() transactions need to specify a higher gas fee via the extraOptions field. This is not supported by protocol rebalancing, so this finalizer will be needed as a safety net.