tycho-execution 0.171.4

Provides tools for encoding and executing swaps against Tycho router and protocol executors.
Documentation
use crate::encoding::{
    errors::EncodingError,
    models::{EncodedSolution, Solution},
    swap_encoder::SwapEncoder,
};

/// A trait that defines how to encode a `Solution` for execution.
pub(crate) trait StrategyEncoder {
    /// `encode_strategy` takes a `Solution`, which contains all the necessary information about
    /// the swaps to be performed, and encodes it into a format that can be executed by the router
    /// or executor contracts.
    ///
    /// # Arguments
    /// * `solution` - The `Solution` to encode, containing swap details, amounts, and execution
    ///   path
    ///
    /// # Returns
    /// * `Result<EncodedSwaps, EncodingError>`
    fn encode_strategy(&self, solution: &Solution) -> Result<EncodedSolution, EncodingError>;

    /// Retrieves the swap encoder for a specific protocol system.
    ///
    /// # Arguments
    /// * `protocol_system` - The identifier of the protocol system (e.g., "uniswap_v2")
    ///
    /// # Returns
    /// * `Option<&Box<dyn SwapEncoder>>` - The swap encoder for the protocol if available
    #[allow(clippy::borrowed_box)]
    fn get_swap_encoder(&self, protocol_system: &str) -> Option<&Box<dyn SwapEncoder>>;
}