signet-bundle 0.16.2

Signet bundle library for creating and simulating Signet bundles.
Documentation
//! This module extends the Alloy provider with the Signet namespace's bundle-related RPC methods.
use crate::{SignetCallBundle, SignetCallBundleResponse};
use alloy::{network::Network, providers::Provider, transports::TransportResult};
use core::future::Future;

/// Signet namespace RPC interface.
pub trait SignetBundleApi<N: Network = alloy::network::Ethereum>: Send + Sync {
    /// Simulates a bundle of transactions against a specific block and returns
    /// the execution results.
    ///
    /// This is similar to the Flashbots [`eth_callBundle`] endpoint, but includes
    /// Signet-specific fields like aggregate orders and fills in the response.
    ///
    /// [`eth_callBundle`]: https://docs.flashbots.net/flashbots-auction/advanced/rpc-endpoint#eth_callbundle
    fn call_bundle(
        &self,
        bundle: SignetCallBundle,
    ) -> impl Future<Output = TransportResult<SignetCallBundleResponse>> + Send;
}

impl<N, P> SignetBundleApi<N> for P
where
    N: Network,
    P: Provider<N>,
{
    async fn call_bundle(
        &self,
        bundle: SignetCallBundle,
    ) -> TransportResult<SignetCallBundleResponse> {
        self.client().request("signet_callBundle", (bundle,)).await
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use alloy::network::Ethereum;
    use alloy::providers::RootProvider;

    #[allow(dead_code)]
    const fn assert_impl<T: SignetBundleApi>() {}
    const _: () = assert_impl::<RootProvider<Ethereum>>();
}