├── .gitignore ├── README.md ├── alchemyFullTxStats.ts ├── images ├── blocknative_mempool_missed_txs.webp └── makerdao_mempool_latency_benchmark.png ├── logger.ts └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | errorLogs.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaf/mempool-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /alchemyFullTxStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaf/mempool-benchmark/HEAD/alchemyFullTxStats.ts -------------------------------------------------------------------------------- /images/blocknative_mempool_missed_txs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaf/mempool-benchmark/HEAD/images/blocknative_mempool_missed_txs.webp -------------------------------------------------------------------------------- /images/makerdao_mempool_latency_benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaf/mempool-benchmark/HEAD/images/makerdao_mempool_latency_benchmark.png -------------------------------------------------------------------------------- /logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaf/mempool-benchmark/HEAD/logger.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samlaf/mempool-benchmark/HEAD/package.json --------------------------------------------------------------------------------