AnteDecEthGasConsume.AnteHandle:
The current implementation uses an InfiniteGasMeterWithLimit which
tracks gas consumption throughout the transaction and then brings up an infinitegasmeter and is not enforced in a way that restricts consumption.
https://github.com/code-423n4/2024-11-nibiru/blob/8ed91a036f664b421182e183f19f6cef1a4e28ea/eth/gas_limit.go#L65-L72
However, the issue is that the current approach has additional gas cost attached for the operations which doesnt accurately reflect EVM-specific gas consumption since it doesnt track the gas consumption at the end of the EVM transaction.
QA, considering this seems to be currently the intended behavior.
Consider accounting for the gas cost at the end of the EVM transaction and not using only the infinite gas meter.
