From fbef65893a45d84e0b77d5a780e105313ed48ace Mon Sep 17 00:00:00 2001
From: "steinkirch.eth, phd" <1130416+mvonsteinkirch@users.noreply.github.com>
Date: Sat, 15 Apr 2023 19:01:09 -0700
Subject: [PATCH] notes on searcher latency
---
MEV_searchers/latency/README.md | 27 ++++++++++++++++++++++++++-
1 file changed, 26 insertions(+), 1 deletion(-)
diff --git a/MEV_searchers/latency/README.md b/MEV_searchers/latency/README.md
index 61ece8e..fff026c 100644
--- a/MEV_searchers/latency/README.md
+++ b/MEV_searchers/latency/README.md
@@ -7,10 +7,35 @@
-* for **builders**: builders might delay before proposing a full block to maximize the amount of potential mev for inclusion in the block. this requires extremely low latency for proposing blocks and views of the mempool.
+#### builders
+
+* builders might delay before proposing a full block to maximize the amount of potential mev for inclusion in the block. this requires extremely low latency for proposing blocks and views of the mempool.
+#### searcher
+
+##### compute latency
+
+* transaction parsing and filtering
+* simulation
+
+
+##### transport latency
+
+* sending bundles to builder
+* builder rate limits
+
+
+##### searcher responses
+
+* proprietary compute improvements
+* bundle timing in slot periods
+* co-locate with builder (searching in the same region, etc.)
+
+
+
+
---