mempool-dumpster icon indicating copy to clipboard operation
mempool-dumpster copied to clipboard

Dump all the mempool transactions 🗑️ ♻️ (in Parquet + CSV)

Results 14 mempool-dumpster issues
Sort by recently updated
recently updated
newest added

## 📝 Summary Optimize code using a more modern writing style which can make the code more efficient and cleaner. Official support by Go Team. https://pkg.go.dev/golang.org/x/tools/gopls/internal/analysis/modernize. ## ⛱ Motivation and...

Trash are transactions that are either: - already included - fail basic validity checks ([code here](https://github.com/flashbots/mempool-dumpster/blob/8af5ad51e2e89a2b91fd1e44ccf9ba73af8803ac/collector/tx_processor.go#L352)

Code: https://github.com/flashbots/mempool-dumpster/blob/b235d6737ffe97cff22b722db3fc97c3f237634e/collector/collector.go#L140-L144

## Current Problem When we fetch mempool data (transactions), we don't sort transactions by timestamp. This makes it slow to find transactions within specific time ranges. ## Why This Matters...