-
Notifications
You must be signed in to change notification settings - Fork 20.4k
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
transact() attempts to use unsupported eth_maxPriorityFeePerGas via JSON RPC on Kovan #23479
Comments
Alchemy is also subject to this issue. Reported to them as well. |
Hi @shoenseiwaso, I'm an engineer at Alchemy. The However, Parity/OpenEthereum have not implemented that method and so Kovan is not going to register it at all. The geth client does not connect to Kovan, so when developing on the Kovan testnet you will have to estimate gas another way. |
Thanks for your reply - I wasn't aware OpenEthereum doesn't support this! Alchemy documentation for I think the issue is still valid as-is, in that the go-ethereum library should support connecting to a Kovan node over JSON-RPC. |
With go-ethereum v1.10.8 connected to an Infura or Alcchemy Kovan node, it is unable to transact if
gasPrice
is nil.HeaderByNumber("latest")
returns a non-nilhead.BaseFee
(implying EIP-1559 support), but then returnsMethod not found
foreth_maxPriorityFeePerGas
whenethclient.SuggestGasTipCap()
is called.The issue is on this line of code:
go-ethereum/accounts/abi/bind/base.go
Line 263 in 62ad17f
go-ethereum client version: v1.10.8
node version (Infura and Alchemy Kovan): OpenEthereum//v3.3.0-rc.6-stable-5d9ff63-20210804/x86_64-linux-gnu/rustc1.52.1
Error in action - note the non-nil
head.BaseFee
and theMethod not found
error returned fromethclient.SuggestGasTipCap()
:Have reported this to Infura support as well.
Easy workaround is to manually specify a
gasPrice
of2000000000
(2 GWei).The text was updated successfully, but these errors were encountered: