Pith. sign in

REVIEW 3 major objections 4 minor 92 references

Demystifying Solana Bots: From GitHub Blueprints to On-Chain Fingerprints

T0 review · 3 major / 4 minor · reviewed 2026-08-03 · deepseek-v4-flash

Pith's one-line read Solana bots, built off-chain, leave on-chain execution fingerprints that fall into four distinct regimes, and their codebases share a five-stage operational pipeline.

desk verdict A careful, well-validated empirical mapping of Solana bots from code and on-chain data, with one headline claim — the shared five-stage pipeline — that outruns the evidence. read the letter →

arxiv 2607.28424 v2 pith:YRPVSWNV submitted 2026-07-30 cs.SE

classification cs.SE
keywords SolanablockchainbotsMEVbottaxonomyoperationalpipelineon-chainfingerprintsempiricalsoftwareengineeringtransactionclustering
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

This paper tries to establish that Solana bots — off-chain programs that submit transactions on a high-throughput, low-fee blockchain — can be systematically understood from two complementary evidence sources: what their source code implements and what their transactions leave on-chain. Analyzing 586 open-source bot codebases and 200 bot-controlled addresses with over 44 million transactions, it derives a 15-category taxonomy of bot functions, identifies a five-stage pipeline shared across categories, and finds that on-chain execution traces cluster into four regimes separated by submission intensity and execution effectiveness. The four regimes align with two intents: three clusters behave like maximal-extractable-value (MEV) arbitrage bots pivoting on wrapped SOL, and the fourth behaves like an automated trading bot concentrated on a meme-coin launch platform. The study matters because bot activity on Solana's decentralized exchanges exceeds $250 million in daily volume, so knowing what bots implement and how they execute helps auditors, regulators, and bot builders reason about a significant slice of on-chain activity.

What carries the argument

Two abstractions carry the argument. A five-stage pipeline — setup, observation and acquisition, analytics, planning and decision, execution and reporting — abstracts recurring code-level building blocks into a shared backbone. A four-cluster execution landscape, from density-based clustering of five per-address features (interval, volume, success rate, fees, asset diversity), is how on-chain fingerprints are read. Interpretation rests on two motifs: a round-trip (swapping out of and back into the same base asset across two or more venues) marks arbitrage; a directional flow marks trading operations. Discriminating statistics: wrapped SOL appears in 70.9–99.9% of arbitrage-cluster transactio

What would settle it

Take bot addresses from a sniping service (bots that race to buy newly listed tokens) for one month, compute the same five features, and project them onto the four baseline clusters. If they form a new isolated cluster or mostly map to noise, the four-regime fingerprint landscape and its arbitrage/trading alignment fail for the broader population.

Watch

Extended reading notes

Core claim

Open-source Solana bots share a five-stage pipeline — setup, observation, analytics, planning, execution — despite heterogeneous building blocks. Clustering 200 bot addresses on transaction frequency, volume, success rate, fees, and asset diversity yields four clusters: low-rate/low-success multi-venue; high-rate/low-success specialized-venue; steady aggregator-centric with high success; and low-rate near-perfect-success trading. The first three show a round-trip arbitrage motif and pivot on wrapped SOL; the fourth trades directionally on a single launch platform. Cluster-to-service correspondence and persistence into a later validation window mark the fingerprints as systematic.

Load-bearing premise

The on-chain half of the study rests on addresses drawn from a few leaderboard bot services that focus on trading and arbitrage; if sniping, wash-trading, NFT, and analytics bots behave differently, the four-cluster fingerprint landscape and its arbitrage-versus-trading interpretation may not generalize to the wider Solana bot population.

Editorial extensions

If this is right

  • Unknown addresses can be classified as arbitrage-oriented or trading-oriented from five basic transaction statistics, without access to code or intent labels.
  • The five-stage pipeline offers an architectural reference model for auditing bot codebases and for building modular frameworks that reuse shared components.
  • Because over 30% of dependencies lag more than a year behind the latest release, with core SDKs lagging 125–572 days, protocol upgrades can silently break a large share of deployed bots.
  • Venue composition is the temporally stable fingerprint (up to 8 of 10 top venues overlapped across time windows), while traded tokens are not (only 3 of 10 overlapped); detection should rely on venue and infrastructure signals rather than the assets traded.
  • Transactions that reach a proprietary automated-market-maker venue were profitable 62.3% of the time versus 21.0% otherwise, so execution-edge research should examine venue access as much as strategy logic.

Reading between the lines

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

  • The four clusters are learned from leaderboard services that are trading- and arbitrage-oriented; sniping, wash-trading, NFT, and analytics bots may occupy separate regimes, and a study sampling those services could test whether the 2x2 landscape extends.
  • Open-source bots are only the visible slice of the population; the five-stage pipeline likely underrepresents proprietary layers such as custom low-latency submission loops, so it should be read as a common floor rather than the full architecture.
  • The stability of venue fingerprints and instability of traded tokens suggests a practical monitoring rule: track where a bot routes and whom it pays for inclusion, not which token it happens to be buying this week.
  • A testable extension connects the two datasets: check whether addresses belonging to codebases with the most outdated core-SDK dependencies show lower on-chain success rates or higher failed-transaction shares; the paper's dependency-lag and execution-effectiveness measurements make the link plausible but do not establish it.
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

3 major / 4 minor

Summary. The paper presents a large-scale empirical study of Solana bots from two complementary data sources: 586 GitHub repositories and 200 bot-associated on-chain addresses with over 44 million transactions. RQ1 derives a 15-category functionality taxonomy via LLM-assisted open card sorting with human validation (91% accuracy on a stratified sample, Cohen's kappa 0.81). RQ2 analyzes code-level building blocks obtained by clustering 78,300 functions with a UMAP-HDBSCAN pipeline, derives a five-stage operational pipeline, and characterizes third-party dependency usage and technical lag. RQ3 clusters the 200 addresses by transaction-level execution features into four clusters, interprets three as MEV-oriented and one as trading-operations-oriented, and validates temporal stability using a later validation window. The paper claims to be the first implementation-grounded characterization of Solana bots and draws implications for bot design, dependency maintenance, and execution infrastructure.

Significance. If the central claims hold, this is a substantial contribution to the empirical software engineering and blockchain-bot literature. The study is descriptive rather than theory-driven, but it is unusually careful in several respects: inter-rater kappas (0.71–0.81), a stratified human validation of the taxonomy with per-category accuracy reported, a function-clustering pipeline with a reported silhouette score, manual validation of cluster-to-intent mapping with 96.23% agreement, and a separate time-window validation using 5-NN projection onto the baseline clusters. The replication package is referenced with a DOI. These strengths make the paper's descriptive findings about taxonomy and on-chain fingerprints credible. However, the headline 'shared five-stage pipeline' claim is not backed by a quantitative conformance analysis, and the profitability measure in RQ3 needs clarification; both affect the strength of the central conclusions.

major comments (3)
  1. [§5.1.2, Finding 3, Abstract] The claim that Solana bots follow a 'largely shared' five-stage pipeline is not quantitatively validated. Section 5.1.2 states only that 'multiple representative repositories' were selected per category and that building blocks were grouped into stages based on architectural responsibilities and co-occurrence. It does not report the number of repositories inspected, the selection criteria, inter-rater reliability for stage assignment, or any conformance measure across the 586 repositories. The paper itself notes (Fig. 2 and §5.2.2) that the Planning and Decision stage is simplified or omitted in categories such as Sniping, which is the largest category (134 repos). Without a conformance statistic, the 'shared' qualifier is an unsupported generalization; the pipeline may be a plausible reference model that few repositories instantiate. I request an operational definition of pipeline confo
  2. [§6.1.2, Findings 5–6, Fig. 4] The 'realized per-address profit' is computed from per-transaction balance deltas between pre_token_balances and post_token_balances. The text does not state whether transaction fees, priority fees, Jito tips, or transfers to service/protocol accounts are subtracted from these deltas. This matters because the paper later contrasts profitable HumidiFi-invoking transactions (62.30%) with non-HumidiFi transactions (21.01%) and draws conclusions about execution outcomes. If the balance-delta measure excludes fees and tips, the reported profitability may be materially biased, especially for clusters with high fee or tip outflows (e.g., Cluster 3 in Table 10). Please specify the exact profit formula, including what is debited and credited, and provide a sensitivity check using a net-of-fee and net-of-tip measure.
  3. [§3 and §8] The on-chain address sample is drawn from two baseline services (Trojan, SolanaMevBot) and one validation service (Axiom), all trading/arbitrage-oriented with public leaderboards. The paper acknowledges in §8 that this limits generalization to trading- and MEV-oriented bots and that three taxonomy domains are absent from the on-chain clusters. This is an acknowledged and appropriately scoped limitation, so I do not treat it as a blocking error. However, the claim of 'four distinct execution clusters' among only 158 non-noise addresses from these services should be phrased as a characterization of these services, not of Solana bots generally, in the abstract and conclusion.
minor comments (4)
  1. [References] Several references are duplicated or near-duplicated: [22] and [24] appear to be the same paper, and [61] and [66] as well as [19] and [67] are listed twice with different numbers. Please unify these entries to avoid citation inconsistencies.
  2. [§5.2.2] The pipeline stage is called 'Planning and Decision' in Figure 2 but 'Planning and Execution' in the paragraph discussing category variations. Please make the terminology consistent.
  3. [§9] Minor language issue: 'We addresses this gap' should be 'We address this gap.'
  4. [Throughout] Several figure/table cross-references in the main text (e.g., 'Table 8 in the Appendix', 'Table 11 in the Appendix') are fine, but the footnote marker in Table 9 for the token '1 coin can change your life' has a formatting issue (the superscript is lost). Please check the final rendering.

Circularity Check

0 steps flagged · score 2.0 of 10

No significant circularity; a descriptive empirical study whose minor self-referential validations are limitations, not derivation-level circularity.

full rationale

This is a descriptive empirical study, not a derivation with fitted parameters or predictions. The central claims—15-category taxonomy (RQ1), five-stage pipeline (RQ2), and on-chain execution clusters (RQ3)—are inductive summaries of the collected GitHub repositories and on-chain addresses. No equation-level circularity is present: no parameter is fitted to a subset and then reported as a prediction; no uniqueness theorem from the authors is invoked to force a choice; no ansatz is smuggled in via citation. The taxonomy is validated by human annotation with Cohen's kappa (0.78/0.81) and a 100-repo sanity check (91% accuracy), providing independent content. The cluster interpretation in Section 6.2.2 is primarily based on manual round-trip motif annotation (96.23% agreement), not solely on service labels. Two self-referential aspects are worth noting as limitations rather than circularity. First, the 'MEV vs. Trading Operations' cluster labels are cross-validated using the same bot-service labels (SolanaMevBot vs. Trojan) that defined the on-chain sample; Section 8 acknowledges this scope, so the validation is not an external test. Second, the five-stage pipeline (Section 5.1.2) is abstracted from 'multiple representative repositories' within the same 586-repo dataset, and no conformance statistic is reported for how many repositories actually instantiate all five stages; this is a generalizability threat to the 'shared' qualifier, not a circular derivation. These issues lower confidence in generalization but do not make any result equivalent to its inputs by construction. Hence score 2.

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

The paper introduces no new physical or conceptual entities. Its central claims rest on data-source fidelity, LLM/clustering reliability, and the representativeness of two bot services. The free parameters are analytic modeling choices, not fitted physical constants.

free parameters (4)
  • UMAP hyperparameters (n_neighbors, n_components) = 10, 10
    Tuned via grid search to maximize Silhouette in function clustering (Section 5.1.1); clustering outcomes depend on these choices.
  • HDBSCAN hyperparameters for function clustering (min_cluster_size, min_samples) = 5, 5
    Tuned via grid search in Section 5.1.1; controls the granularity of building-block extraction.
  • Address-clustering HDBSCAN hyperparameters = not reported
    Section 6.1.1 applies HDBSCAN without stating hyperparameters; the four-cluster solution (33/11/12/102 plus 42 noise) is not exactly reproducible.
  • k for k-NN validation classifier = 5
    Validation assigns addresses by 5-nearest-neighbor majority vote (Section 6.1.3), an arbitrary but reasonable choice.
assumptions (6)
  • domain assumption Dune SQL records accurately represent Solana transaction outcomes, fees, and token balance changes for the sampled addresses.
    All on-chain features (success rate, fees, profits) are computed from Dune SQL data (Section 3); errors in Dune's indexing would propagate through RQ3.
  • domain assumption Solscan program-ID annotations correctly map invoked program IDs to named venues.
    Venue characterization in Section 6.1.2 relies on Solscan annotations; mislabeled programs would misattribute cluster venue profiles.
  • domain assumption The GitHub search and filtering procedure yields a representative set of public Solana bot repositories.
    The taxonomy (RQ1) and pipeline (RQ2) are grounded entirely in the 586-repo dataset collected via keyword queries (Section 3); unknown repos not surfaced by search are excluded.
  • domain assumption LLM-generated function summaries and repository tags (DeepSeek v3.2) are semantically faithful enough for card sorting.
    Taxonomy construction (Section 4.1) and building-block labeling (Section 5.1.1) depend on LLM outputs; human validation covers only small samples.
  • domain assumption UMAP/HDBSCAN on Qwen3 embeddings identifies meaningful code clusters.
    Building blocks are derived by embedding and clustering functions (Section 5.1.1); if the embeddings do not capture functional similarity, the building-block and pipeline findings weaken.
  • domain assumption The round-trip motif and venue-specific directional flow definitions accurately separate MEV from trading operations.
    Cluster-to-taxonomy mapping (Section 6.2.2) uses these operational definitions; manual annotation of 53 addresses (96.23% agreement) supports but does not prove the mapping.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Demystifying Solana Bots: From GitHub Blueprints to On-Chain Fingerprints." pith.science (2026). https://pith.science/paper/YRPVSWNV

@misc{pith2026260728424,
  author       = {Pith},
  title        = {Pith review of: Demystifying Solana Bots: From GitHub Blueprints to On-Chain Fingerprints},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/YRPVSWNV}},
  note         = {Machine review of arXiv:2607.28424}
}
read the original abstract

Solana is an emerging blockchain platform designed for high throughput and low transaction fees, making it inexpensive to submit transactions at scale and, consequently, increasing exposure to bot spamming and related financial exploitation. Solana bots are typically off-chain software systems that operate in a competitive on-chain execution environment by constructing and submitting transactions, and the bot-related transactions on the decentralized exchanges exceed 250 million dollars in daily trading volume in January 2026. Prior studies on Solana have examined system performance, smart-contract security, and specific on-chain phenomena. However, we still lack a systematic understanding of what Solana bots implement in practice and how these implementations manifest as observable on-chain execution fingerprints. To address this gap, we performed a large-scale empirical study of Solana bots from two complementary views: (i) 586 bot repositories collected from GitHub, and (ii) 200 bot addresses on Solana, with over 44 million on-chain transactions. Our study derives an implementation-grounded taxonomy of Solana bots comprising 15 categories grouped into five domains (e.g., Trading Operations, MEV, and On-chain Analytics), identifies a largely shared five-stage operational pipeline manifested in bot implementations, and uncovers systematic variation in on-chain trading behaviors of Solana bots across diverse trading platforms and assets. Based on our findings, we highlight future research directions, and provide recommendations for building and operating bots on the Solana blockchain.

Figures

Figures reproduced from arXiv: 2607.28424 by the authors.

Figure 1
Figure 1. Repository coverage distribution per building block. [PITH_FULL_IMAGE:figures/full_fig_p006_1.png] view at source ↗
Figure 2
Figure 2. Bot pipeline across categories, organized into five stages. [PITH_FULL_IMAGE:figures/full_fig_p007_2.png] view at source ↗
Figure 3
Figure 3. Transaction success rate vs. submission rate across [PITH_FULL_IMAGE:figures/full_fig_p008_3.png] view at source ↗
Figures from the paper (1 more)
Figure 4
Figure 4. Figure 4: Total profits Distribution across clusters. Bands [PITH_FULL_IMAGE:figures/full_fig_p009_4.png]

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

92 extracted references · 3 linked inside Pith

  1. [1]

    Solana: A new architecture for a high performance blockchain v0. 8.13,

    A. Yakovenko, “Solana: A new architecture for a high performance blockchain v0. 8.13, ” 2018

  2. [2]

    Web 3.0 emerging,

    J. Hendler, “Web 3.0 emerging, ”Computer, vol. 42, no. 1, pp. 111–113, 2009

  3. [3]

    Blockchain disruption and decentralized finance: The rise of decentralized business models,

    Y. Chen and C. Bellavitis, “Blockchain disruption and decentralized finance: The rise of decentralized business models, ”Journal of Business Venturing Insights, vol. 13, p. e00151, 2020

  4. [4]

    Non-fungible tokens: Blockchains, scarcity, and value,

    U. W. Chohan, “Non-fungible tokens: Blockchains, scarcity, and value, ” inNon- Fungible Tokens. Routledge, 2021, pp. 1–11

  5. [5]

    Solana account model,

    “Solana account model, ” https://solana.com/docs/core/accounts, 2024, accessed: 2026-01-28

  6. [6]

    Accessed: 2024-10-28

    (2024) Consensus on solana. Accessed: 2024-10-28. [Online]. Available: https://www.helius.dev/blog/consensus-on-solana

  7. [7]

    Solana official website,

    Solana, “Solana official website, ” accessed: 2025-05-13. [Online]. Available: https://solana.com/

  8. [8]

    All chains defi tvl,

    DefiLlama, “All chains defi tvl, ” accessed: 2025-05-13. [Online]. Available: https://defillama.com/chains

Show all 92 references
  1. [9]

    Accessed: 2024-10-28

    (2024) Solana mev bots: A detailed explanation. Accessed: 2024-10-28. [Online]. Available: https://www.coinfeeds.ai/crypto-blog/solana-mev-bots

  2. [10]

    Accessed: 2024-10-28

    (2024) Bots suspected of pushing solana over ethereum — research. Accessed: 2024-10-28. [Online]. Available: https://cointelegraph.com/news/bots-pushing- solana-over-ethereum-research

  3. [11]

    Accessed: 2026-03-27

    (2026) Trading bots on solana. Accessed: 2026-03-27. [Online]. Available: https://dune.com/adam_tehc/trading-bots-on-solana

  4. [12]

    Accessed: 2025-05-13

    (2024) Bots are making huge profit on the solana ecosystem! dominating other blockchains. Accessed: 2025-05-13. [Online]. Available: https: //support.bitrue.com/hc/en-001/articles/30134959225113-Bots-are-Making- Huge-Profit-on-The-Solana-Ecosystem-Dominating-Other-Blockchains

  5. [13]

    Detecting financial bots on the ethereum blockchain,

    T. Niedermayer, P. Saggese, and B. Haslhofer, “Detecting financial bots on the ethereum blockchain, ” inCompanion Proceedings of the ACM on Web Conference 2024, 2024, pp. 1742–1751

  6. [14]

    Can solana’s high throughput be an enabler for iot?

    F. Duffy, M. Bendechache, and I. Tal, “Can solana’s high throughput be an enabler for iot?” in2021 IEEE 21st International Conference on Software Quality, Reliability and Security Companion (QRS-C). IEEE, 2021, pp. 615–621

  7. [15]

    Can solana be the solution to the blockchain scal- ability problem?

    G. A. Pierro and R. Tonelli, “Can solana be the solution to the blockchain scal- ability problem?” in2022 IEEE International Conference on Software Analysis, Evolution and Reengineering (SANER). IEEE, 2022, pp. 1219–1226

  8. [16]

    Vrust: Automated vulnerability detection for solana smart contracts,

    S. Cui, G. Zhao, Y. Gao, T. Tavu, and J. Huang, “Vrust: Automated vulnerability detection for solana smart contracts, ” inProceedings of the 2022 ACM SIGSAC Conference on Computer and Communications Security, 2022, pp. 639–652

  9. [17]

    Fuzz on the beach: Fuzzing solana smart contracts,

    S. Smolka, J.-R. Giesen, P. Winkler, O. Draissi, L. Davi, G. Karame, and K. Pohl, “Fuzz on the beach: Fuzzing solana smart contracts, ” inProceedings of the 2023 ACM SIGSAC Conference on Computer and Communications Security, 2023, pp. 1197–1211

  10. [18]

    Why does my transaction fail? a first look at failed transactions on the solana blockchain,

    X. Zheng, Z. Wan, D. Lo, D. Xie, and X. Yang, “Why does my transaction fail? a first look at failed transactions on the solana blockchain, ”Proceedings of the ACM on Software Engineering, vol. 2, no. ISSTA, pp. 1489–1512, 2025

  11. [19]

    Quantifying the threat of sandwiching mev on jito: A measurement of solana’s leading validator client,

    N. Gerzon, B. Weintraub, J. In, A. Mislove, and C. Nita-Rotaru, “Quantifying the threat of sandwiching mev on jito: A measurement of solana’s leading validator client, ” inProceedings of the 2025 ACM Internet Measurement Conference (IMC ’25). ACM, 2025, pp. 937–943

  12. [20]

    Trust dynamics and bot-driven responses: An approach to rug pulls in solana meme coin markets,

    Y. Li, N. Yao, Y. Huo, and W. Cai, “Trust dynamics and bot-driven responses: An approach to rug pulls in solana meme coin markets, ” inProceedings of the 17th ACM Web Science Conference 2025, 2025, pp. 106–116

  13. [21]

    Solrpds: A dataset for analyzing rug pulls in solana decentralized finance,

    A. Alhaidari, B. Kalal, B. Palanisamy, and S. Sural, “Solrpds: A dataset for analyzing rug pulls in solana decentralized finance, ” inProceedings of the Fifteenth ACM Conference on Data and Application Security and Privacy, ser. CODASPY ’25. New York, NY, USA: Association for ...

  14. [22]

    Token spammers, rug pulls, and sniper bots: An analysis of the ecosystem of tokens in ethereum and in the binance smart chain (𝐵𝑁𝐵 ),

    F. Cernera, M. La Morgia, A. Mei, and F. Sassi, “Token spammers, rug pulls, and sniper bots: An analysis of the ecosystem of tokens in ethereum and in the binance smart chain (𝐵𝑁𝐵 ), ” in32nd USENIX security symposium (USENIX security 23), 2023, pp. 3349–3366

  15. [23]

    Ready, aim, snipe! analysis of sniper bots and their impact on the defi ecosystem,

    F. Cernera, M. La Morgia, A. Mei, A. M. Mongardini, and F. Sassi, “Ready, aim, snipe! analysis of sniper bots and their impact on the defi ecosystem, ” inCom- panion Proceedings of the ACM Web Conference 2023, 2023, pp. 1093–1102

  16. [24]

    Detecting financial bots on the ethereum blockchain,

    T. Niedermayer, P. Saggese, and B. Haslhofer, “Detecting financial bots on the ethereum blockchain, ” inCompanion Proceedings of the ACM Web Conference 2024, 2024, pp. 1742–1751

  17. [25]

    Towards understanding and characterizing the arbi- trage bot scam in the wild,

    K. Li, S. Guan, and D. Lee, “Towards understanding and characterizing the arbi- trage bot scam in the wild, ”Proceedings of the ACM on Measurement and Analysis of Computing Systems, vol. 7, no. 3, pp. 1–29, 2023

  18. [26]

    Accessed: 2026-07-13

    (2026) Solana mev: An introduction. Accessed: 2026-07-13. [Online]. Available: https://www.helius.dev/blog/solana-mev-an-introduction

  19. [27]

    [Online]

    (2026) What is wrapped sol? Accessed: 2026-07-13. [Online]. Available: https://solana.com/docs/tokens/basics/sync-native

  20. [28]

    Accessed: 2026-07-13

    (2026) Understanding proprietary amms. Accessed: 2026-07-13. [Online]. Available: https://solana.com/news/understanding-proprietary-amms

  21. [29]

    Solana Programs,

    “Solana Programs, ” https://solana.com/docs/core/programs, accessed: 2026-01-28

  22. [30]

    Solana transactions,

    “Solana transactions, ” 2024, accessed: 2026-01-28. [Online]. Avail- able: https://github.com/solana-foundation/developer-content/blob/main/docs/ core/transactions.md

  23. [31]

    Priority fees: Understanding solana’s transaction fee mechanics,

    Helius, “Priority fees: Understanding solana’s transaction fee mechanics, ” https://www.helius.dev/blog/priority-fees-understanding-solanas-transaction- fee-mechanics, 2023, accessed: 2026-01-28

  24. [32]

    Flash Boys 2.0: Frontrunning in Decentralized Exchanges, Miner Extractable Value, and Consensus Instability,

    P. Daian, S. Goldfeder, T. Kell, Y. Li, X. Zhao, I. Bentov, L. Breidenbach, and A. Juels, “Flash Boys 2.0: Frontrunning in Decentralized Exchanges, Miner Extractable Value, and Consensus Instability, ” in2020 IEEE Symposium on Security and Privacy (SP). IEEE, 2020, pp. 910–927

  25. [33]

    Gulf Stream: Solana’s Mempool-less Transaction Forward- ing Protocol,

    Solana Foundation, “Gulf Stream: Solana’s Mempool-less Transaction Forward- ing Protocol, ” https://solana.com/news/gulf-stream--solana-s-mempool-less- transaction-forwarding-protocol, Jun. 2019, accessed: 2026-01-28

  26. [34]

    What is Jito? — Jito Labs Documentation,

    Jito Labs, “What is Jito? — Jito Labs Documentation, ” https://docs.jito.wtf/, 2025, last updated: 2025-12-30; Accessed: 2026-01-28

  27. [35]

    Wohlin, P

    C. Wohlin, P. Runeson, M. Höst, M. C. Ohlsson, B. Regnell, A. Wesslénet al., Experimentation in software engineering. Springer, 2012, vol. 236

  28. [36]

    Studying the characteristics of aiops projects on github,

    R. Aghili, H. Li, and F. Khomh, “Studying the characteristics of aiops projects on github, ”Empirical Software Engineering, vol. 28, no. 6, p. 143, 2023

  29. [37]

    (2026) Tree-sitter: An incremental parsing system

    Tree-sitter. (2026) Tree-sitter: An incremental parsing system. Accessed: 2026-03-24. [Online]. Available: https://github.com/tree-sitter/tree-sitter

  30. [38]

    (2026) Trojan on solana: The leading telegram trading bot

    Trojan On Solana. (2026) Trojan on solana: The leading telegram trading bot. [Online]. Available: https://trojanonsolana.com/

  31. [39]

    (2026) Solanamevbot documentation: Overview

    SolanaMevBot. (2026) Solanamevbot documentation: Overview. [Online]. Available: https://docs.solanamevbot.com/home/

  32. [40]

    (2026) Dex trading bot wars

    whale_hunter. (2026) Dex trading bot wars. Dune Analytics dashboard. [Online]. Available: https://dune.com/whale_hunter/dex-trading-bot-wars

  33. [41]

    (2026) Circular bots

    Circular. (2026) Circular bots. [Online]. Available: https://circular.fi/bots

  34. [42]

    (2026) Dune analytics

    Dune. (2026) Dune analytics. Accessed: 2026-03-24. [Online]. Available: https://dune.com/

  35. [43]

    Accessed: 2026-07-13

    (2026) Axiom pro. Accessed: 2026-07-13. [Online]. Available: https://dune.com/ adam_tehc/axiom

  36. [44]

    Hierarchical repository-level code summarization for business applications using local llms,

    N. Dhulshette, S. Shah, and V. Kulkarni, “Hierarchical repository-level code summarization for business applications using local llms, ” in2025 IEEE/ACM International Workshop on Large Language Models for Code (LLM4Code). IEEE, 2025, pp. 145–152

  37. [45]

    Repository-level code understanding by llms via hierarchical summarization: Improving code search and bug localization,

    A. R. Oskooei, S. Yukcu, M. C. Bozoglan, and M. S. Aktas, “Repository-level code understanding by llms via hierarchical summarization: Improving code search and bug localization, ” inInternational Conference on Computational Science and Its Applications. Springer, 2025, pp. 88–105

  38. [46]

    W. G. Cochran,Sampling Techniques, 3rd ed. New York: Wiley, 1977

  39. [47]

    demystifying solana bots: From github blueprints to on-chain fingerprints

    (2026) The appendix for “demystifying solana bots: From github blueprints to on-chain fingerprints”. Accessed: 2026-03-27. [Online]. Available: https: //doi.org/10.5281/zenodo.19248227

  40. [48]

    Qwen3 embedding: Advancing text embedding and reranking through foundation models,

    Y. Zhang, M. Li, D. Long, X. Zhang, H. Lin, B. Yang, P. Xie, A. Yang, D. Liu, J. Lin, F. Huang, and J. Zhou, “Qwen3 embedding: Advancing text embedding and reranking through foundation models, ”arXiv preprint arXiv:2506.05176, 2025

  41. [49]

    Hearing more with less: Multi-modal retrieval-and-selection augmented conversational llm-based asr,

    B. Mu, H. Liu, H. Xue, K. Wei, and L. Xie, “Hearing more with less: Multi-modal retrieval-and-selection augmented conversational llm-based asr, ” inProceedings of the AAAI Conference on Artificial Intelligence, vol. 40, no. 38, 2026, pp. 32 519– 32 527

  42. [50]

    From detection to diagnosis: Advancing hallucination analysis with automated data synthesis,

    Y. Liu, Q. Yang, T. Guo, F. Qu, J. Liu, and Y. Wen, “From detection to diagnosis: Advancing hallucination analysis with automated data synthesis, ” inProceedings of the AAAI Conference on Artificial Intelligence, vol. 40, no. 38, 2026, pp. 32 222– 32 230

  43. [51]

    Umap: Uniform manifold approximation and projection for dimension reduction,

    L. McInnes, J. Healy, and J. Melville, “Umap: Uniform manifold approximation and projection for dimension reduction, ”arXiv preprint arXiv:1802.03426, 2018

  44. [52]

    Density-based clustering based on hierarchical density estimates,

    R. J. Campello, D. Moulavi, and J. Sander, “Density-based clustering based on hierarchical density estimates, ” inPacific-Asia conference on knowledge discovery and data mining. Springer, 2013, pp. 160–172

  45. [53]

    A needle is an outlier in a haystack: Hunting malicious pypi packages with code clustering,

    W. Liang, X. Ling, J. Wu, T. Luo, and Y. Wu, “A needle is an outlier in a haystack: Hunting malicious pypi packages with code clustering, ” in2023 38th IEEE/ACM International Conference on Automated Software Engineering (ASE). IEEE, 2023, pp. 307–318

  46. [54]

    Surviving in dark forest: Towards evading the attacks from front-running bots in application layer,

    Z. Ma, M. Jiang, F. Luo, X. Luo, and Y. Zhou, “Surviving in dark forest: Towards evading the attacks from front-running bots in application layer, ” in34rd USENIX Security Symposium (USENIX Security 25), 2025

  47. [55]

    Why is my transaction risky? understanding smart contract semantics and interactions in the nft ecosystem,

    Y. Chen, X. Liu, Z. Wan, Z. Wang, D. Lo, D. Xie, and X. Yang, “Why is my transaction risky? understanding smart contract semantics and interactions in the nft ecosystem, ” inProceedings of the 40th IEEE/ACM International Conference on Automated Software Engineering, 2025

  48. [56]

    Hierarchical clustering for software architecture recovery,

    O. Maqbool and H. Babri, “Hierarchical clustering for software architecture recovery, ”IEEE Transactions on Software Engineering, vol. 33, no. 11, pp. 759–780, 2007. Demystifying Solana Bots: From GitHub Blueprints to On-Chain Fingerprints ASE ’26, October 12–16, 2026, Munich, Germany

  49. [57]

    Automating dependency updates in practice: An exploratory study on github dependabot,

    R. He, H. He, Y. Zhang, and M. Zhou, “Automating dependency updates in practice: An exploratory study on github dependabot, ”IEEE Transactions on Software Engineering, vol. 49, no. 8, pp. 4004–4022, 2023

  50. [58]

    An empirical study of dependency downgrades in the npm ecosystem,

    F. R. Cogo, G. A. Oliva, and A. E. Hassan, “An empirical study of dependency downgrades in the npm ecosystem, ”IEEE Transactions on Software Engineering, vol. 47, no. 11, pp. 2457–2470, 2019

  51. [59]

    The distance-weighted k-nearest-neighbor rule,

    S. A. Dudani, “The distance-weighted k-nearest-neighbor rule, ”IEEE Transactions on Systems, Man, and Cybernetics, no. 4, pp. 325–327, 1976

  52. [60]

    Cyclic arbitrage in decentralized exchanges,

    Y. Wang, Y. Chen, H. Wu, L. Zhou, S. Deng, and R. Wattenhofer, “Cyclic arbitrage in decentralized exchanges, ” inCompanion Proceedings of the Web Conference 2022, 2022, pp. 12–19

  53. [62]

    Accessed: 2026-07-30

    (2026) Transaction 4mvwhwbg2vtgtee58st6spfp2tr2sx3fbgq55vzsrqpxap4l8hnpbb6 vvquwnkg7bxdvsgbqeytqhi2stsuyz9zo. Accessed: 2026-07-30. [Online]. Available: http://bit.ly/4hF537m

  54. [63]

    Accessed: 2026-02-11

    (2026) How dark pools are changing defi and what it means for the industry. Accessed: 2026-02-11. [Online]. Available: https://incrypted.com/en/how-dark- pools-are-changing-defi-and-what-it-means-industry/

  55. [64]

    Accessed: 2026-02-11

    (2025) Solana’s proprietary amm revolution. Accessed: 2026-02-11. [Online]. Available: https://www.helius.dev/blog/solanas-proprietary-amm-revolution

  56. [65]

    Accessed: 2026-02-11

    (2025) Solana’s proprietary amms. Accessed: 2026-02-11. [Online]. Available: https://blockworks.co/news/solanas-proprietary-amms

  57. [66]

    A large scale study of the ethereum arbitrage ecosystem,

    R. McLaughlin, C. Kruegel, and G. Vigna, “A large scale study of the ethereum arbitrage ecosystem, ” in32nd USENIX Security Symposium (USENIX Security 23), 2023, pp. 3295–3312

  58. [67]

    Quantifying the Threat of Sandwiching MEV on Jito: A Measurement of Solana’s Leading Validator Client,

    N. Gerzon, B. Weintraub, J. In, A. Mislove, and C. Nita-Rotaru, “Quantifying the Threat of Sandwiching MEV on Jito: A Measurement of Solana’s Leading Validator Client, ” inProceedings of the 2025 ACM Internet Measurement Conference (IMC ’25). ACM, 2025, also available as an au...

  59. [68]

    From bitcoin to solana–innovating blockchain towards enterprise applications,

    X. Li, X. Wang, T. Kong, J. Zheng, and M. Luo, “From bitcoin to solana–innovating blockchain towards enterprise applications, ” inInternational Conference on Blockchain. Springer, 2021, pp. 74–100

  60. [69]

    Token spammers, rug pulls, and sniper bots: An analysis of the ecosystem of tokens in ethereum and in the binance smart chain (bnb),

    F. Cernera, M. La Morgia, A. Mei, and F. Sassi, “Token spammers, rug pulls, and sniper bots: An analysis of the ecosystem of tokens in ethereum and in the binance smart chain (bnb), ” in32nd USENIX Security Symposium (USENIX Security 23), 2023, pp. 3349–3366

  61. [70]

    The blockchain warfare: Investigating the ecosystem of sniper bots on ethereum and bnb smart chain,

    F. Cernera, M. La Morgia, A. Mei, A. Mongardini, and F. Sassi, “The blockchain warfare: Investigating the ecosystem of sniper bots on ethereum and bnb smart chain, ”ACM Transactions on Internet Technology

  62. [71]

    Flash boys 2.0: Frontrunning in decentralized exchanges, miner extractable value, and consensus instability,

    P. Daian, S. Goldfeder, T. Kell, Y. Li, X. Zhao, I. Bentov, L. Breidenbach, and A. Juels, “Flash boys 2.0: Frontrunning in decentralized exchanges, miner extractable value, and consensus instability, ” in2020 IEEE symposium on security and privacy (SP). IEEE, 2020, pp. 910–927

  63. [72]

    Quantifying blockchain extractable value: How dark is the forest?

    K. Qin, L. Zhou, and A. Gervais, “Quantifying blockchain extractable value: How dark is the forest?” in2022 IEEE Symposium on Security and Privacy (SP). IEEE, 2022, pp. 198–214

  64. [73]

    High-frequency trading on decentralized on-chain exchanges,

    L. Zhou, K. Qin, C. F. Torres, D. V. Le, and A. Gervais, “High-frequency trading on decentralized on-chain exchanges, ” in2021 IEEE Symposium on Security and Privacy (SP). IEEE, 2021, pp. 428–445

  65. [74]

    Frontrunner jones and the raiders of the dark forest: An empirical study of frontrunning on the ethereum blockchain,

    C. F. Torres, R. Caminoet al., “Frontrunner jones and the raiders of the dark forest: An empirical study of frontrunning on the ethereum blockchain, ” in30th USENIX Security Symposium (USENIX Security 21), 2021, pp. 1343–1359

  66. [75]

    Understanding (mis) behavior on the eosio blockchain,

    Y. Huang, H. Wang, L. Wu, G. Tyson, X. Luo, R. Zhang, X. Liu, G. Huang, and X. Jiang, “Understanding (mis) behavior on the eosio blockchain, ”Proceedings of the ACM on Measurement and Analysis of Computing Systems, vol. 4, no. 2, pp. 1–28, 2020

  67. [76]

    Detecting arbitrage on ethereum through feature fusion and positive-unlabeled learning,

    H. Jin, C. Li, J. Xiao, T. Zhang, X. Dai, and B. Li, “Detecting arbitrage on ethereum through feature fusion and positive-unlabeled learning, ”IEEE Journal on Selected Areas in Communications, vol. 40, no. 12, pp. 3660–3671, 2022

  68. [77]

    Cryptocurrency trading: a comprehensive survey,

    F. Fang, C. Ventre, M. Basios, L. Kanthan, D. Martinez-Rego, F. Wu, and L. Li, “Cryptocurrency trading: a comprehensive survey, ”Financial Innovation, vol. 8, no. 1, p. 13, 2022

  69. [78]

    Automated market making and loss-versus-rebalancing,

    J. Milionis, C. C. Moallemi, T. Roughgarden, and A. L. Zhang, “Automated market making and loss-versus-rebalancing, ”arXiv preprint arXiv:2208.06046, 2022

  70. [79]

    Stranger dan- ger? investor behavior and incentives on cryptocurrency copy-trading platforms,

    D. Kawai, K. Soska, B. Routledge, A. Zetlin-Jones, and N. Christin, “Stranger dan- ger? investor behavior and incentives on cryptocurrency copy-trading platforms, ” inProceedings of the 2024 CHI Conference on Human Factors in Computing Systems, 2024, pp. 1–20

  71. [80]

    Copy trading,

    J. Apesteguia, J. Oechssler, and S. Weidenholzer, “Copy trading, ”Management Science, vol. 66, no. 12, pp. 5608–5622, 2020

  72. [81]

    Sok: Mev counter- measures,

    S. Yang, F. Zhang, K. Huang, X. Chen, Y. Yang, and F. Zhu, “Sok: Mev counter- measures, ” inProceedings of the workshop on decentralized finance and security, 2024, pp. 21–30

  73. [82]

    Accessed: 2026-01-21

    Solana volume bot. Accessed: 2026-01-21. [Online]. Available: https://tools. smithii.io/market-maker/solana

  74. [83]

    Accessed: 2026-01-21

    How solana volume bots are changing the game for token visibility in 2025. Accessed: 2026-01-21. [Online]. Available: https://www.binance.com/en/square/ post/27015582564801

  75. [84]

    Accessed: 2026-01-21

    Solana aml bot. Accessed: 2026-01-21. [Online]. Available: https://www. scorechain.com/resources/crypto-glossary/solana-aml-bot

  76. [85]

    Accessed: 2026-01-21

    Amlbot continuous transaction monitoring. Accessed: 2026-01-21. [Online]. Available: https://www.linkedin.com/pulse/amlbot-continuous-transaction- monitoring-amlbot-oj0wc

  77. [86]

    Backtesting framework for con- centrated liquidity market makers on uniswap v3 decentralized exchange,

    A. Urusov, R. Berezovskiy, and Y. Yanovich, “Backtesting framework for con- centrated liquidity market makers on uniswap v3 decentralized exchange, ” Blockchain: Research and Applications, vol. 6, no. 1, p. 100256, 2025

  78. [87]

    Maximizing portfolio profitability during a cryptocurrency downtrend: A bitcoin blockchain transaction-based approach,

    E. W. V. Zuniga, C. M. Ranieri, L. Zhao, J. Ueyama, Y.-t. Zhu, and D. Ji, “Maximizing portfolio profitability during a cryptocurrency downtrend: A bitcoin blockchain transaction-based approach, ”Procedia Computer Science, vol. 222, pp. 539–548, 2023

  79. [88]

    Accessed: 2026-01-21

    deploy your own token from solana: Roadmap to launch your token from 0. Accessed: 2026-01-21. [Online]. Available: https://smithii.io/en/deploy-your- own-solana-token/

  80. [90]

    Accessed: 2026-01-21

    How metaplex is solving solana’s network-crashing nft botting problem. Accessed: 2026-01-21. [Online]. Available: https://decrypt.co/100376/how- metaplex-is-solving-solanas-network-crashing-nft-botting-problem

  81. [91]

    A line graph-based model to detect opti- mal routing path in decentralized exchanges (dexs),

    Y. Zhang, Y. Li, and C. J. Tessone, “A line graph-based model to detect opti- mal routing path in decentralized exchanges (dexs), ” in2025 IEEE International Conference on Blockchain and Cryptocurrency (ICBC). IEEE, 2025, pp. 1–5

  82. [92]

    Accessed: 2026-01-21

    About routing. Accessed: 2026-01-21. [Online]. Available: https://dev.jup.ag/ docs/routing

  83. [93]

    Accessed: 2026-01-21

    Bulk payments - for your large scale payroll and instant mass payments. Accessed: 2026-01-21. [Online]. Available: https://cwallet.com/crypto-tools/crypto-bulk- payment

  84. [94]

    Accessed: 2026-01-21

    Mastering the payments bot: A comprehensive guide to seamless crypto transactions and buying tokens. Accessed: 2026-01-21. [Online]. Available: https: //medium.com/%40companionbot/mastering-the-multi-wallet-management- bot-a-comprehensive-guide-to-seamless-crypto-transactions-...

Pith tools

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