├── .github ├── dependabot.yml └── workflows │ └── go.yml ├── LICENSE ├── README.md ├── call_bundle.go ├── call_bundle_test.go ├── doc.go ├── example_test.go ├── examples ├── call_and_send_bundle │ └── main.go ├── go.mod ├── go.sum └── user_stats │ └── main.go ├── go.mod ├── go.sum ├── internal ├── strint.go └── strint_test.go ├── middleware.go ├── middleware_test.go ├── private_tx.go ├── private_tx_test.go ├── send_bundle.go ├── send_bundle_test.go ├── stats.go ├── stats_test.go └── testdata ├── call_bundle.golden ├── cancel_private_transaction.golden ├── get_bundle_stats.golden ├── get_bundle_stats_v2.golden ├── get_user_stats.golden ├── get_user_stats_v2.golden ├── send_bundle.golden └── send_private_transaction.golden /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/README.md -------------------------------------------------------------------------------- /call_bundle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/call_bundle.go -------------------------------------------------------------------------------- /call_bundle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/call_bundle_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/doc.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/example_test.go -------------------------------------------------------------------------------- /examples/call_and_send_bundle/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/examples/call_and_send_bundle/main.go -------------------------------------------------------------------------------- /examples/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/examples/go.mod -------------------------------------------------------------------------------- /examples/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/examples/go.sum -------------------------------------------------------------------------------- /examples/user_stats/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/examples/user_stats/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/go.sum -------------------------------------------------------------------------------- /internal/strint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/internal/strint.go -------------------------------------------------------------------------------- /internal/strint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/internal/strint_test.go -------------------------------------------------------------------------------- /middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/middleware.go -------------------------------------------------------------------------------- /middleware_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/middleware_test.go -------------------------------------------------------------------------------- /private_tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/private_tx.go -------------------------------------------------------------------------------- /private_tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/private_tx_test.go -------------------------------------------------------------------------------- /send_bundle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/send_bundle.go -------------------------------------------------------------------------------- /send_bundle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/send_bundle_test.go -------------------------------------------------------------------------------- /stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/stats.go -------------------------------------------------------------------------------- /stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/stats_test.go -------------------------------------------------------------------------------- /testdata/call_bundle.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/testdata/call_bundle.golden -------------------------------------------------------------------------------- /testdata/cancel_private_transaction.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/testdata/cancel_private_transaction.golden -------------------------------------------------------------------------------- /testdata/get_bundle_stats.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/testdata/get_bundle_stats.golden -------------------------------------------------------------------------------- /testdata/get_bundle_stats_v2.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/testdata/get_bundle_stats_v2.golden -------------------------------------------------------------------------------- /testdata/get_user_stats.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/testdata/get_user_stats.golden -------------------------------------------------------------------------------- /testdata/get_user_stats_v2.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/testdata/get_user_stats_v2.golden -------------------------------------------------------------------------------- /testdata/send_bundle.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/testdata/send_bundle.golden -------------------------------------------------------------------------------- /testdata/send_private_transaction.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmittmann/flashbots/HEAD/testdata/send_private_transaction.golden --------------------------------------------------------------------------------