-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Final 1559 major updates #2066
Comments
I am using Infura network and currently sending my transactions in web3.py like this:
In order to make EIP-1559 styled transaction I modified the
But, now I'm getting error that Can you please help me to how to make EIP-1559 transactions in web3.py correctly. |
@SamarthPardhi, this is the line that's important here:
Edit: The explicit |
Closed by #2205 |
What was wrong?
maxFeePerGas
andmaxPriorityFeePerGas
in/web3/_utils/transactions.py
maxFeePerGas
andmaxPriorityFeePerGas
gasPrice
values in the examples / code samples rather than the newmaxFeePerGas
andmaxPriorityFeePerGas
fieldsHow can it be fixed?
Once eth-tester has EIP-1559 support:
maxFeePerGas
andmaxPriorityFeePerGas
in/web3/_utils/transactions.py
maxFeePerGas
andmaxPriorityFeePerGas
wherevergasPrice
is currently being used. We should make sure to still include some tests with thegasPrice
param, wherever appropriate, to ensure our support for legacy transactions.Note: This is dependent on eth-tester support for EIP-1559 / london hard fork
The text was updated successfully, but these errors were encountered: