hindsight icon indicating copy to clipboard operation
hindsight copied to clipboard

Retroactively estimate Uniswap-ish MEV on Flashbots MEV-Share by simulating backrun-arbitrages.

Results 14 hindsight issues
Sort by recently updated
recently updated
newest added

load time is unsettling on larger datasets

``` Error: error decoding response body: expected value at line 1 column 1 Caused by: expected value at line 1 column 1 ```

`hindsight export` currently loads ALL entries from the source db into memory before dumping them into the destination. This is reeeal slow on a large dataset (1+ months). proposed solution:...

Since we are not taking into account block size constraints, we might be overestimating MEV. To fix this we could run some builder algorithm on top of all the set...

currently taking the whole DB into rust and then filtering. Getting slow.

when looking at the debug logs, I'm noticing that the service_request id is incrementing serially. That tells me that the same client is being used for all requests, which makes...

implement retry? saw an error trying to get data from the /history endpoint that caused the `scan` command to terminate

noticed that the scan command stalls sometimes conditions: - many events from the same tx being processed by step_arb - maybe others current resolution: - restart, or - reduce batch_size...

decouple the event-fetching step from the arb-simulating step. Asynchronously update the event+tx queue as it has items popped off by the sim processor, so the sim processor always has a...