kabu_broadcast_flashbots/client/
mod.rs

1//! # Alloy Flashbots
2//!
3//! Provides an [alloy](https://github.com/alloy-rs/alloy) compatible provider for submitting
4//! [Flashbots](https://docs.flashbots.net) bundles.
5//!
6pub use body::make_signed_body;
7pub use bundle::{BundleHash, BundleRequest, BundleTransaction, SimulatedBundle, SimulatedTransaction};
8pub use jsonrpc::SendBundleResponseType;
9pub use middleware::{FlashbotsMiddleware, FlashbotsMiddlewareError};
10pub use relay::{Relay, RelayConfig, RelayError};
11
12mod bundle;
13
14mod middleware;
15
16mod jsonrpc;
17mod relay;
18
19mod body;
20mod utils;