You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
web3.eth.sendTransaction() allows transaction objects to have some of these new fields according to EIP-1559 standards.
However, this way requires user to sign the transaction at the web application.
I am currently using web3.eth.accounts.signTransaction() so that time will not be wasted signing on the web application, but the transaction objects seems to not accept certain EIP-1559 standards fields like maxFeePerGas and maxPriorityFeePerGas. In fact, this transaction object still requires gas which is gas limits.
May I know if this is the intended design, or if there were constraints, or how can I allow my users to indicate maxFeePerGas and maxPriorityFeePerGas on a transaction object for web3.eth.accounts.signTransaction()
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
web3.eth.sendTransaction()
allows transaction objects to have some of these new fields according to EIP-1559 standards.However, this way requires user to sign the transaction at the web application.
I am currently using
web3.eth.accounts.signTransaction()
so that time will not be wasted signing on the web application, but the transaction objects seems to not accept certain EIP-1559 standards fields likemaxFeePerGas
andmaxPriorityFeePerGas
. In fact, this transaction object still requiresgas
which is gas limits.May I know if this is the intended design, or if there were constraints, or how can I allow my users to indicate
maxFeePerGas
andmaxPriorityFeePerGas
on a transaction object forweb3.eth.accounts.signTransaction()
Beta Was this translation helpful? Give feedback.
All reactions