-
Notifications
You must be signed in to change notification settings - Fork 13
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
Investigate gas error on goerli #526
Comments
I guess it's because of this line: unified-auctions-ui/core/src/network.ts Line 18 in cbf5727
We either need to hardcode higher number to quickly fix it. Or check if it is properly estimated if there is no hardcoded number whatsoever. |
Oh I see. I was expecting that we fetch the |
Yes. Although adding a zero might be quite expensive 😢 |
Well, looking at the number in the error message above adding a zero wouldn't even be enough ... |
Oh, true! |
Goal
Enable testing scenarios on goerli
Context
Currently when trying to execute a tx on
goerli
this is prevented by a gas related error (see assets below for console output).AFAIK we compute the
maxFeePerGas
by taking thebaseFeePerGas
times 2 . So it makes me wonder how we can end up in a scenario like described in the error mesage where themaxFeePerGas
is lower than thebaseFeePerGas
Assets
Tasks
The text was updated successfully, but these errors were encountered: