Pith. sign in

REVIEW 4 major objections 5 minor 33 references

Unraveling Ethereum's Mempool: The Impact of Fee Fairness, Transaction Prioritization, and Consensus Efficiency

T0 review · 4 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read Ethereum's transaction inclusion remains fee-driven after EIP-1559, a live-node study finds.

desk verdict Real live-node dataset and a plausible congestion-finality link, but the flagship inclusion-probability figure is circular and the supporting regressions are underreported. read the letter →

arxiv 2506.07988 v1 pith:6KOTJTW5 submitted 2025-06-09 cs.CR

classification cs.CR
keywords EthereummempoolEIP-1559transactioninclusionfeefairnessgaspriceproof-of-stakeconsensuslatencyvalidatorefficiency
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper argues that Ethereum's post-EIP-1559 fee market still systematically favors high-fee transactions. Using live data from a Geth execution node and a Prysm consensus node, it finds that transactions above roughly 75 Gwei are nearly always included while those below 20 Gwei face delay or exclusion. It also reports that mempool congestion correlates with longer block finalization times, and that extremely high fees do not reliably speed up confirmation. If correct, this means EIP-1559 improved fee predictability but did not remove fee-based inclusion bias, and that mempool load is a measurable drag on consensus efficiency.

What carries the argument

Three quantitative tools carry the argument: the inclusion-probability proxy $P(Tx_i \in B_t) = G(Tx_i)/\sum_j G(Tx_j)$, which approximates a transaction's likelihood of entering the next block by its share of total mempool gas price; the linear regression $T_{final} = \alpha M_{pend} + \beta G_{avg} + \gamma$ linking finalization time to pending transaction count and average gas price; and the fairness deviation metric $\Delta F_{fair} = (I^{obs}_{LP} - I^{exp}_{LP})/I^{exp}_{LP}$ comparing observed with expected inclusion of low-fee transactions. The live Geth and Prysm nodes supply the transaction-pool and beacon-chain data these tools are fit to.

What would settle it

A falsifying result would be a dataset of actual inclusion outcomes over many blocks in which, after controlling for block space and priority fees, inclusion probability does not rise with gas price, or in which low-fee transactions are included at rates far above their gas-price share. Concretely, take historical blocks, record each transaction's gas price and whether it entered the next block it could enter, bin by gas price, and compare observed inclusion frequencies with the predictions of Equation 1.

Watch

Extended reading notes

Core claim

The central claim is that Ethereum transaction inclusion remains heavily fee-driven under proof of stake. Empirically, inclusion probability rises with gas price toward near-certainty above 75 Gwei, low-fee transactions below 20 Gwei experience delay or exclusion, and mempool clearance rates fluctuate around 40–60% with congestion delaying finalization. The paper further finds that fees above roughly 50 Gwei offer diminishing returns, so very high fees do not guarantee faster confirmation. The authors conclude that fee-based prioritization bias persists despite EIP-1559 and propose congestion-aware fee adjustments, reserved block slots for low-fee transactions, and handling of out-of-gas vulnerabilities.

Load-bearing premise

The analysis rests on the assumption that a transaction's share of total mempool gas price represents its chance of being included in the next block, a proxy the authors themselves call informal; because that share is proportional to gas price by construction, the positive gas-price/inclusion correlation the paper reports is guaranteed by the metric rather than independently discovered.

Editorial extensions

If this is right

  • If inclusion is as fee-driven as reported, EIP-1559's base-fee mechanism does not by itself restore fee fairness, and protocol changes such as reserved low-fee block slots would be needed to change inclusion outcomes.
  • Mempool congestion is not just a fee-market symptom but a measurable driver of block finalization latency, implying that validator efficiency depends on mempool state.
  • The finding that fees above roughly 50–75 Gwei hit diminishing returns suggests users can often set moderate priority fees without sacrificing inclusion speed, and that excess fees are largely wasted.
  • The fairness deviation metric and congestion-aware adjustment proposals, if adopted, could be evaluated on other proof-of-stake chains that use mempool-based transaction selection.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The paper's proxy in Equation 1 is proportional to gas price by construction, so the headline correlation between gas price and the proxy is in part baked into the metric; an independent test would compare actual inclusion frequencies against the proxy's predictions rather than regressing the proxy on itself.
  • The proposed reserved-slot mechanism is a testable policy: allocating a small number of block slots by arrival time or lottery would let an experimenter measure how much inclusion fairness improves without sacrificing throughput.
  • The diminishing returns above roughly 50 Gwei could be turned into a practical fee oracle, recommending that users set priority fees near the plateau point rather than matching the mempool's maximum.
  • Because the congestion-finalization correlation comes from a single node pair over one observation window, it should be checked against historical beacon-chain data to see whether it holds across network stress events.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. This paper reports an empirical study of Ethereum's mempool after EIP-1559, using a Geth execution node and a Prysm consensus node to collect real-time transaction, fee, and block finalization data. It proposes a normalized gas-price share as a proxy for inclusion probability (Eq. 1), a linear regression model for finalization time (Eq. 2), and a fairness deviation metric (Eq. 3). Based on these tools and several plots, the paper concludes that transaction inclusion remains heavily fee-driven, that low-fee transactions face delays or exclusion, that mempool congestion affects validator efficiency and finalization latency, and that excessively high fees do not guarantee faster confirmation. It then suggests protocol-level improvements such as congestion-aware fee adjustments, reserved block slots for low-fee transactions, and better handling of out-of-gas vulnerabilities.

Significance. If the empirical claims were adequately supported, the paper would be a useful contribution to the ongoing evaluation of EIP-1559 and to the less-studied coupling between mempool congestion and consensus-layer performance. The authors' setup, combining execution-layer and consensus-layer monitoring, is a reasonable and potentially valuable approach, and the proposed fairness metric and policy recommendations are relevant to current Ethereum design discussions. The paper also explicitly acknowledges that Eq. 1 is only a proxy, which is honest. However, as it stands, the central quantitative evidence does not support the headline conclusions: the main inclusion metric is defined in terms of gas price and therefore produces a gas-price trend by construction, while the latency and fairness regressions are reported without coefficients, errors, sample sizes, or study periods. No dataset or code is released, so the empirical results cannot currently be independently verified.

major comments (4)
  1. [§5.2, Eq. (1); §7.1, Fig. 2] The 'inclusion probability' P(Tx_i ∈ B_t) is defined as G(Tx_i) / Σ_j G(Tx_j), i.e., as the transaction's share of total gas price in a mempool snapshot. For a fixed snapshot the denominator is common to all transactions, so P is monotonically increasing in G(Tx_i). Consequently, plotting P against gas price must show a positive trend, and the near-100% inclusion for high fees reported in Section 7.1 is an artifact of this normalization rather than a measured property of actual block inclusion. The paper's own statement that 'the observed correlation aligns with the inclusion proxy in Eq. 1' confirms this circularity. The authors should replace this proxy with direct observed inclusion rates (e.g., the fraction of broadcast or mempool transactions at each fee level that actually appear in subsequent blocks) and report counts, time windows, and confidence intervals.
  2. [§5.3, Eq. (2); §7.4, Fig. 5] The regression model T_final = α · M_pend + β · G_avg + γ is presented as the basis for the claim that higher gas prices reduce latency and that mempool congestion affects finalization. However, the paper never reports the estimated coefficients, standard errors, p-values, R², sample size, or study period for this model. Figure 5 shows a fitted line and confidence band, but without the underlying regression output the reader cannot assess whether the alleged negative relationship is statistically significant, how large the effect is, or whether alternative specifications would change the conclusion. The same issue affects the related discussion in Section 7.2, which invokes Eq. 2 to claim that clearance rates confirm congestion effects. Full regression diagnostics are required before these claims can be evaluated.
  3. [§5.4, Eq. (3); §7.3, Fig. 4] The fairness deviation metric ΔF_fair depends on I_obs^LP and I_exp^LP, but the paper never defines how the expected fraction I_exp^LP is computed from observable data, nor does it report the observed and expected values, sample sizes, or confidence intervals behind Figure 4. The claim that fee market efficiency 'plateaus around 80%' is therefore not supported by any quantitative evidence. The authors should specify the exact formula for I_exp^LP, describe how low-fee transactions are identified, and report the underlying counts and uncertainties.
  4. [§6, Experimental Setup; §7, Results] The paper does not provide essential provenance for its empirical claims. Section 6.1 does not state the data collection dates, the duration of the observation window, the number of transactions observed, the number of blocks analyzed, or the sampling methodology. Section 6.2 says transactions were broadcast with varying gas fees, but gives no details on fee levels, transaction counts, or timing. Because no dataset or code is released, and Figures 2–5 are presented without underlying statistics, the empirical evidence summarized in Section 9 cannot be independently checked. The authors should state these details explicitly and, ideally, make the anonymized data and analysis scripts available.
minor comments (5)
  1. [References] Reference [19] (Cambus et al., a paper on the 2-ruling set problem) appears unrelated to Ethereum fee markets or transaction processing and should be replaced with a relevant citation or removed.
  2. [§5.2, Eq. (1)] The displayed equation is corrupted in the manuscript: 'NP j=1' appears where a summation symbol and limits should be, and the notation Txi is not consistently introduced. Please fix the typesetting.
  3. [§7.3] The sentence beginning 'The third analysis, illustrated in Figure 4, explores the relationship Figure 4 shows how...' contains a duplicated phrase and should be rewritten.
  4. [§8, Take-Away sections] The emoji headers '🔑 Take-Away RQ-i/ii/iii' are informal for an archival publication; please replace them with standard subsection headings.
  5. [§6.2] The description of the automated transaction submission is too vague to be useful; please specify how many transactions were broadcast, at what fee levels, over what time period, and how inclusion latency was measured.

Circularity Check

1 steps flagged · score 6.0 of 10

Inclusion-probability evidence is circular: Eq. 1 defines P as a normalized gas-price share, so Fig. 2's positive correlation is forced by the metric's construction; the headline fee-bias claim therefore rests in part on a tautology, though latency and clearance analyses are independent.

  1. self definitional [Section 5.2, Eq. (1), and Section 7.1, Fig. 2]
    "We define a proxy metric for the likelihood of a transaction Txi being included in the next block Bt, based on its relative gas price compared to competing transactions. This is not a formal probability definition ... P (Txi ∈ Bt) = G(Txi) / sum_j G(Txj) (1) ... Figure 2 shows a strong positive correlation between gas price and transaction inclusion probability."

    Within any mempool snapshot the denominator of Eq. 1 is the same for all transactions, so P(Tx_i in B_t) = G(Tx_i)/S is a deterministic, monotonically increasing function of G(Tx_i). Plotting this quantity against gas price (Fig. 2) therefore displays an algebraic identity, not an empirical association. The paper explicitly labels Eq. 1 a proxy rather than a probability, but Section 7.1 then uses the forced correlation as evidence that 'EIP-1559 does not eliminate prioritization bias' and that low-fee transactions 'remain disadvantaged.' A metric constructed to be proportional to gas price cannot provide independent evidence that high gas prices increase inclusion likelihood.

full rationale

The paper's central fee-prioritization claim rests partly on Eq. 1's self-referential inclusion proxy: the 'strong positive correlation' in Fig. 2 is guaranteed by the normalization and is therefore not an empirical finding. However, the paper also offers independent, non-circular evidence: broadcast-transaction latency vs. gas price (Fig. 5), mempool clearance rates (Fig. 3), and a heatmap linking mempool size to finalization time (Fig. 6). These direct observations would, if fully reported, support the fee-driven-inclusion and congestion-latency conclusions. The fairness-deviation metric (Eq. 3) compares observed vs. proportional inclusion and is not circular by construction. No load-bearing self-citation chain was found; the references are external prior work and client documentation. Because one of the paper's named quantitative analyses (inclusion probability vs. gas price) reduces to its own definition while other analyses are independent but underreported, partial circularity is present but the derivation as a whole is not wholly forced.

Assumptions & free parameters 2 free parameters · 4 assumptions · 0 invented entities

No new entities are introduced. The proposed congestion-aware fee adjustments and reserved block slots are policy suggestions, not postulated scientific entities. The main free parameters are the regression coefficients in Eq. 2 and hand-chosen rolling window sizes. The proxy in Eq. 1 is the most consequential ad hoc assumption because it forces the central inclusion-probability result.

free parameters (2)
  • Regression coefficients alpha, beta, gamma = Not reported
    Equation 2 fits finalization time as a linear function of pending mempool count and average gas price; coefficients are learned from the authors' dataset but values, standard errors, and goodness-of-fit are never reported.
  • Rolling average window sizes = 50 transactions and 30 blocks
    Chosen by hand for smoothing; affects visual interpretation of Figures 3 but not the central argument.
assumptions (4)
  • ad hoc to paper The normalized gas-price share in Eq. 1 approximates the probability of inclusion in the next block
    Section 5.2 explicitly states this is 'not a formal probability definition', but a normalized approximation. Because it is proportional to gas price by definition, any plot of it against gas price trivially shows a positive trend. The paper nevertheless uses it as the basis for Figure 2 and the inclusion-probability finding in Section 7.1.
  • ad hoc to paper Linear relationship between finalization time and pending count and average gas price
    Equation 2 is a linear regression model asserted without justification or diagnostic checks; used to claim mempool congestion affects finalization time in Sections 7.2 and 7.5.
  • domain assumption A single Geth and Prysm node pair is representative of the global Ethereum mempool
    Section 6.1 describes a single node deployment; mempool content is local and varies by peer connections and client type, so the proxy and clearance rates are specific to that node's view.
  • domain assumption Proportional inclusion is the fairness baseline
    Equation 3 defines fairness as observed low-fee inclusion matching the mempool share of low-fee transactions. This assumes proportional inclusion is the correct normative baseline, which is not argued.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Unraveling Ethereum's Mempool: The Impact of Fee Fairness, Transaction Prioritization, and Consensus Efficiency." pith.science (2026). https://pith.science/paper/6KOTJTW5

@misc{pith2026250607988,
  author       = {Pith},
  title        = {Pith review of: Unraveling Ethereum's Mempool: The Impact of Fee Fairness, Transaction Prioritization, and Consensus Efficiency},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/6KOTJTW5}},
  note         = {Machine review of arXiv:2506.07988}
}
read the original abstract

Ethereum's transaction pool (mempool) dynamics and fee market efficiency critically affect transaction inclusion, validator workload, and overall network performance. This research empirically analyzes gas price variations, mempool clearance rates, and block finalization times in Ethereum's proof-of-stake ecosystem using real-time data from Geth and Prysm nodes. We observe that high-fee transactions are consistently prioritized, while low-fee transactions face delays or exclusion despite EIP-1559's intended improvements. Mempool congestion remains a key factor in validator efficiency and proposal latency. We provide empirical evidence of persistent fee-based disparities and show that extremely high fees do not always guarantee faster confirmation, revealing inefficiencies in the current fee market. To address these issues, we propose congestion-aware fee adjustments, reserved block slots for low-fee transactions, and improved handling of out-of-gas vulnerabilities. By mitigating prioritization bias and execution inefficiencies, our findings support more equitable transaction inclusion, enhance validator performance, and promote scalability. This work contributes to Ethereum's long-term decentralization by reducing dependence on high transaction fees for network participation.

Figures

Figures reproduced from arXiv: 2506.07988 by the authors.

Figure 1
Figure 1. The framework analyzes mempool behavior, execution-consensus correlation, and fee market efficiency using real-time monitoring, statistical [PITH_FULL_IMAGE:figures/full_fig_p003_1.png] view at source ↗
Figure 2
Figure 2. The plot shows a positive correlation between gas price and [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Mempool clearance rate over time, with raw fluctuations and [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: The plot illustrates the relationship between max fee per gas [PITH_FULL_IMAGE:figures/full_fig_p004_4.png]
Figure 5
Figure 5. Figure 5: The plot shows that higher gas prices reduce transaction [PITH_FULL_IMAGE:figures/full_fig_p005_5.png]

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

33 extracted references · 23 canonical work pages

  1. [1]

    A next-generation smart contract and decentralized application platform,

    V . Buterin et al. , “A next-generation smart contract and decentralized application platform,” white paper , vol. 3, no. 37, pp. 2–1, 2014. [Online]. Available: https://www.weusecoins.com/assets/pdf/library/Ethereum white paper-a next generation smart contract and decentralized application platform-vitalik-buterin.pdf

  2. [2]

    SlimArchive: A lightweight architecture for ethereum archive nodes,

    H. Feng, Y . Hu, Y . Kou, R. Li, J. Zhu, L. Wu, and Y . Zhou, “SlimArchive: A lightweight architecture for ethereum archive nodes,” in 2024 USENIX Annual Technical Conference (USENIX ATC 24) . Santa Clara, CA: USENIX Association, Jul. 2024, pp. 1257–1272. [Online]. Available: https://www.usenix.org/ conference/atc24/presentation/feng-hang

  3. [3]

    Understanding ethereum mempool security under asymmetric DoS by symbolized stateful fuzzing,

    Y . Wang, Y . Tang, K. Li, W. Ding, and Z. Yang, “Understanding ethereum mempool security under asymmetric DoS by symbolized stateful fuzzing,” in 33rd USENIX Security Symposium (USENIX Security 24) . Philadelphia, PA: USENIX Association, Aug. 2024, pp. 4747–4764. [Online]. Available: https://www.usenix.org/ conference/usenixsecurity24/presentation/wang-yibo

  4. [4]

    Gas fees on the ethereum blockchain: from foundations to derivative valuations,

    B. K. Meister and H. C. Price, “Gas fees on the ethereum blockchain: from foundations to derivative valuations,” Frontiers in Blockchain , vol. 7, p. 1462666, 2024. [Online]. Available: https://www.frontiersin.org/journals/blockchain/articles/ 10.3389/fbloc.2024.1462666

  5. [5]

    Ethereum proof- of-stake consensus layer: Participation and decentralization,

    D. Grandjean, L. Heimbach, and R. Wattenhofer, “Ethereum proof- of-stake consensus layer: Participation and decentralization,” in Financial Cryptography and Data Security. FC 2024 International Workshops, J. Budurushi, O. Kulyk, S. Allen, T. Diamandis, A. Klages-Mundt, A. Bracciali, G. Goodell, and S. Matsuo, Eds. Cham: Springer Nature Switzerland, 2025, ...

  6. [6]

    Eip-1559: Fee market change for eth 1.0 chain,

    V . Buterin, E. Conner, R. Dudley, M. Slipper, I. Norden, and A. Bakhta, “Eip-1559: Fee market change for eth 1.0 chain,” Ethereum Improvement Proposal, 2019, accessed: 2025-03-14. [Online]. Available: https://eips.ethereum.org/EIPS/eip-1559

  7. [7]

    Maximum extractable value (mev) mitigation approaches in ethereum and layer-2 chains: A comprehensive survey,

    Z. Alipanahloo, A. S. Hafid, and K. Zhang, “Maximum extractable value (mev) mitigation approaches in ethereum and layer-2 chains: A comprehensive survey,” IEEE Access , vol. 12, pp. 185 212–185 231, 2024. [Online]. Available: https: //doi.org/10.1109/ACCESS.2024.3514375

  8. [8]

    Tiered Mechanisms for Blockchain Transaction Fees

    A. Kiayias, E. Koutsoupias, P. Lazos, and G. Panagiotakos, “Tiered mechanisms for blockchain transaction fees,” 2023. [Online]. Available: https://arxiv.org/abs/2304.06014

Show all 33 references
  1. [9]

    Transaction fee mechanism design,

    T. Roughgarden, “Transaction fee mechanism design,” SIGecom Exch., vol. 19, no. 1, p. 52–55, Jul. 2021. [Online]. Available: https://doi.org/10.1145/3476436.3476445

  2. [10]

    The influence factors on ethereum transaction fees,

    G. A. Pierro and H. Rocha, “The influence factors on ethereum transaction fees,” in 2019 IEEE/ACM 2nd International Workshop on Emerging Trends in Software Engineering for Blockchain (WETSEB) , 2019, pp. 24–31. [Online]. Available: https://doi.org/10.1109/WETSEB.2019.00010

  3. [11]

    What makes ethereum blockchain transactions be processed fast or slow? an empirical study,

    M. Pacheco, G. A. Oliva, G. K. Rajbahadur, and A. E. Hassan, “What makes ethereum blockchain transactions be processed fast or slow? an empirical study,” Empirical Software Engineering, vol. 28, no. 2, p. 39, 2023. [Online]. Available: https://doi.org/10.1007/s10664-022-10283-7

  4. [12]

    Ethereum: State of knowledge and research perspectives,

    S. Tikhomirov, “Ethereum: State of knowledge and research perspectives,” in F oundations and Practice of Security , A. Imine, J. M. Fernandez, J.-Y . Marion, L. Logrippo, and J. Garcia-Alfaro, Eds. Cham: Springer International Publishing, 2018, pp. 206–221. [Online]. Available...

  5. [13]

    Dynamical analysis of the eip-1559 ethereum fee market,

    S. Leonardos, B. Monnot, D. Reijsbergen, E. Skoulakis, and G. Piliouras, “Dynamical analysis of the eip-1559 ethereum fee market,” ser. AFT ’21. New York, NY , USA: Association for Computing Machinery, 2021, p. 114–126. [Online]. Available: https://doi.org/10.1145/3479722.3480993

  6. [14]

    An empirical study on ethereum private transactions and the security implications,

    X. Lyu, M. Zhang, X. Zhang, J. Niu, Y . Zhang, and Z. Lin, “An empirical study on ethereum private transactions and the security implications,” 2022. [Online]. Available: https://arxiv.org/abs/2208.02858

  7. [15]

    Proof-of-stake consensus mechanisms for future blockchain networks: Fundamentals, applications and opportunities,

    C. T. Nguyen, D. T. Hoang, D. N. Nguyen, D. Niyato, H. T. Nguyen, and E. Dutkiewicz, “Proof-of-stake consensus mechanisms for future blockchain networks: Fundamentals, applications and opportunities,” IEEE Access , vol. 7, pp. 85 727–85 745, 2019. [Online]. Available: https://...

  8. [16]

    Enforcing fairness in blockchain transaction ordering,

    A. Orda and O. Rottenstreich, “Enforcing fairness in blockchain transaction ordering,” Peer-to-peer Networking and Applications , vol. 14, no. 6, pp. 3660–3673, 2021. [Online]. Available: https://doi.org/10.1007/s12083-021-01165-8

  9. [17]

    Streamlining transaction management: Exploring ethereum mempool apis,

    A. Hausman, “Streamlining transaction management: Exploring ethereum mempool apis,” Hausman Marketing Letter , March 2024, published on March 1, 2024. [Online]. Available: https://tinyurl.com/ypy49m65

  10. [18]

    Neonpool: Reimagining cryptocurrency transaction pools for lightweight clients and iot devices,

    H. B. Haq, T. Ahmad, A. Buriro, and S. Ullah, “Neonpool: Reimagining cryptocurrency transaction pools for lightweight clients and iot devices,” 2024. [Online]. Available: https: //arxiv.org/abs/2412.16217

  11. [19]

    Time and space optimal massively parallel algorithm for the 2-ruling set problem

    M. Cambus, F. Kuhn, S. Pai, and J. Uitto, “Time and space optimal massively parallel algorithm for the 2-ruling set problem.” Schloss Dagstuhl – Leibniz-Zentrum f ¨ur Informatik, 2023. [Online]. Available: https://drops.dagstuhl.de/entities/document/10. 4230/LIPIcs.DISC.2023.11

  12. [20]

    Is my transaction done yet? an empirical study of transaction processing times in the ethereum blockchain platform,

    M. Pacheco, G. Oliva, G. K. Rajbahadur, and A. Hassan, “Is my transaction done yet? an empirical study of transaction processing times in the ethereum blockchain platform,” ACM Trans. Softw. Eng. Methodol. , vol. 32, no. 3, Apr. 2023. [Online]. Available: https://doi.org/10.11...

  13. [21]

    An analytical study of large blocks on ethereum,

    P. Ocheja, M. Cortes-Goicoechea, T. Mohandas-Daryanani, B. Flanagan, H. Ogata, J. L. Munoz, and L. Bautista-Gomez, “An analytical study of large blocks on ethereum,” in Proceedings of the 2024 6th Blockchain and Internet of Things Conference , ser. BIOTC ’24. New York, NY , US...

  14. [22]

    An empirical smart contracts latency analysis on ethereum blockchain for trustworthy inter- provider agreements,

    F. Javed and J. Mangues-Bafalluy, “An empirical smart contracts latency analysis on ethereum blockchain for trustworthy inter- provider agreements,” 2025. [Online]. Available: https://arxiv.org/ abs/2503.01397

  15. [23]

    Analyzing transaction confirmation in ethereum using machine learning techniques,

    V . C. Oliveira, J. Almeida Valadares, J. E. A. Sousa, A. Borges Vieira, H. S. Bernardino, S. Moraes Villela, and G. Dias Goncalves, “Analyzing transaction confirmation in ethereum using machine learning techniques,” SIGMETRICS Perform. Eval. Rev., vol. 48, no. 4, p. 12–15, Ma...

  16. [24]

    Unveiling ethereum’s p2p network: The role of chain and client diversity,

    J. Luo, “Unveiling ethereum’s p2p network: The role of chain and client diversity,” 2025. [Online]. Available: https: //arxiv.org/abs/2501.16236

  17. [25]

    The early days of the ethereum blob fee market and lessons learnt,

    L. Heimbach and J. Milionis, “The early days of the ethereum blob fee market and lessons learnt,” 2025. [Online]. Available: https://arxiv.org/abs/2502.12966

  18. [26]

    Developing cost-effective blockchain-powered applications: A case study of the gas usage of smart contract transactions in the ethereum blockchain platform,

    A. A. Zarir, G. A. Oliva, Z. M. J. Jiang, and A. E. Hassan, “Developing cost-effective blockchain-powered applications: A case study of the gas usage of smart contract transactions in the ethereum blockchain platform,” vol. 30, no. 3, Mar. 2021. [Online]. Available: https://do...

  19. [27]

    Step on the gas? a better approach for recommending the ethereum gas price,

    S. M. Werner, P. J. Pritz, and D. Perez, “Step on the gas? a better approach for recommending the ethereum gas price,” 2021. [Online]. Available: https://arxiv.org/abs/2003.03479

  20. [28]

    Go ethereum (geth),

    T. G. team, “Go ethereum (geth),” GitHub repository, 2025, accessed: 2025-03-14. [Online]. Available: https://github.com/ ethereum/go-ethereum

  21. [29]

    Prysm: Ethereum consensus client,

    P. Labs and O. Labs, “Prysm: Ethereum consensus client,” GitHub repository, 2025, accessed: 2025-03-14. [Online]. Available: https://github.com/prysmaticlabs/prysm

  22. [30]

    Solutions to scalability of blockchain: A survey,

    Q. Zhou, H. Huang, Z. Zheng, and J. Bian, “Solutions to scalability of blockchain: A survey,” IEEE Access , vol. 8, pp. 16 440–16 455, 2020. [Online]. Available: https://doi.org/10.1109/ ACCESS.2020.2967218

  23. [31]

    Encrypted mempools for fairness and efficiency,

    E. R. Community, “Encrypted mempools for fairness and efficiency,” CryptoRank, 2024, accessed: 2025-03-14. [Online]. Available: https://tinyurl.com/mry9csjd

  24. [32]

    Quantifying the risk of out-of-gas conditions in ethereum smart contracts,

    M. M. Ahmed, M. Lim, X. Liu, S.-S. Ho, and N. Ivanov, “Quantifying the risk of out-of-gas conditions in ethereum smart contracts,” in 2025 IEEE 4th International Conference on AI in Cybersecurity (ICAIC) , 2025, pp. 1–8. [Online]. Available: https://doi.org/10.1109/ICAIC63015....

  25. [33]

    etainter: detecting gas-related vulnerabilities in smart contracts,

    A. Ghaleb, J. Rubin, and K. Pattabiraman, “etainter: detecting gas-related vulnerabilities in smart contracts,” in Proceedings of the 31st ACM SIGSOFT International Symposium on Software Testing and Analysis , ser. ISSTA 2022. New York, NY , USA: Association for Computing Mach...

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.