Is it possible to disable default calculation of price with EIP-1559? Not implemented in telos evm #3043
Answered
by
ricmoo
fabioeletto
asked this question in
Q&A
-
Ethereum uses EIP-1559 to calculate the price, but in my scenario where I use the telos evm it is not supported so I need to revert to the legacy price calculation (the old one). |
Beta Was this translation helpful? Give feedback.
Answered by
ricmoo
Jun 2, 2022
Replies: 1 comment
-
Ethers will only use EIP-1559 if the network supports it, otherwise it uses legacy |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
fabioeletto
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ethers will only use EIP-1559 if the network supports it, otherwise it uses legacy
getGasPrice
. It detects a networks support of EIP-1559 by checking if the latest block has thebaseFee
property; if that is not present it will use legacy transactions.