-
Hey Everyone, I have been deep diving into the rundler source code, tracing the estimate userop gas rpc and the sendUserOp rpc, i was curious how the gas limits are actually calculated (pvg,verification and call gaslimit) and how appropriate fees values are calculated, i understand it is mainly using the block base fee + priority fee(estimated from fee history mechanism). I plan onto use this bundler in a network which is pre eip-1559 meaning there is no base fee concept so i was a bit confused if the rundler does not support it outright? because as far as i understand its basic calls to get base fee would fail ? and there is no handling around it that would suggest rundler is meant to support legacy networks too ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hey! Rundler currently only supports networks with EIP-1559 gas fees. We are open for contribution if you'd like to take a shot at generalizing our fee handling to handle pre-1559 networks. Would require some significant changes to the |
Beta Was this translation helpful? Give feedback.
Hey! Rundler currently only supports networks with EIP-1559 gas fees. We are open for contribution if you'd like to take a shot at generalizing our fee handling to handle pre-1559 networks. Would require some significant changes to the
sim
crate mostly.