notes on searcher latency

This commit is contained in:
steinkirch.eth, phd 2023-04-15 19:01:09 -07:00 committed by GitHub
parent 31802377ce
commit fbef65893a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,10 +7,35 @@
<br> <br>
* 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.
<br> <br>
#### 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.)
<br>
--- ---