hopr-api 1.10.0

Common high-level external and internal API traits used by hopr-lib to implement the HOPR protocol
Documentation
use futures::future::BoxFuture;
use hopr_types::primitive::{
    balance::{Balance, Currency},
    prelude::{Address, HoprBalance},
};

use crate::chain::ChainReceipt;

/// Information about a deployed Safe.
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct DeployedSafe {
    /// Safe address.
    pub address: Address,
    /// Addresses of the Safe owners.
    pub owners: Vec<Address>,
    /// Address of the Safe module.
    pub module: Address,
    /// Addresses of nodes that have been registered with this Safe.
    pub registered_nodes: Vec<Address>,
    /// Address of the Safe deployer.
    pub deployer: Address,
}

/// Selector for [deployed Safes](DeployedSafe).
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum SafeSelector {
    /// Selects Safes with the given address.
    Address(Address),
    /// Selects Safes deployed by the given address.
    Deployer(Address),
    /// Selects Safes linked to the given node address
    NodeAddress(Address),
    /// Selects Safes owned by the given address.
    Owner(Address),
}

impl SafeSelector {
    /// Returns `true` if the given deployed Safe matches this selector.
    pub fn satisfies(&self, safe: &DeployedSafe) -> bool {
        match self {
            SafeSelector::Address(address) => &safe.address == address,
            SafeSelector::Deployer(deployer) => &safe.deployer == deployer, 
            SafeSelector::NodeAddress(node_address) => safe.registered_nodes.contains(node_address),
            SafeSelector::Owner(owner) => safe.owners.contains(owner),
        }
    }
}

/// Operations for reading Safe information.
#[async_trait::async_trait]
#[auto_impl::auto_impl(&, Box, Arc)]
pub trait ChainReadSafeOperations {
    type Error: std::error::Error + Send + Sync + 'static;

    /// Returns the native or token currency Safe allowance.
    async fn safe_allowance<C: Currency, A: Into<Address> + Send>(
        &self,
        safe_address: A,
    ) -> Result<Balance<C>, Self::Error>;
    /// Retrieves [`DeployedSafe`] information using the given [`selector`](SafeSelector).
    ///
    /// Returns `None` if no deployed Safe matched the given `selector`.
    async fn safe_info(&self, selector: SafeSelector) -> Result<Option<DeployedSafe>, Self::Error>;
    /// Waits for a Safe matching the given [`selector`](SafeSelector) to be deployed up to the given `timeout`.
    ///
    /// Returns immediately if the matching Safe is already deployed.
    async fn await_safe_deployment(
        &self,
        selector: SafeSelector,
        timeout: std::time::Duration,
    ) -> Result<DeployedSafe, Self::Error>;
    /// Predicts the Module address based on the given `nonce`, `owner` and `safe_address` of the Safe.
    async fn predict_module_address(
        &self,
        nonce: u64,
        owner: &Address,
        safe_address: &Address,
    ) -> Result<Address, Self::Error>;
}

/// Operations for writing Safe information.
#[async_trait::async_trait]
#[auto_impl::auto_impl(&, Box, Arc)]
pub trait ChainWriteSafeOperations {
    type Error: std::error::Error + Send + Sync + 'static;

    /// Deploys Safe with the given `balance` of wxHOPR tokens.
    ///
    /// The admin of the deployed Safe is always only the Connector's own signer. Only one Safe
    /// can be deployed per signer.
    async fn deploy_safe<'a>(
        &'a self,
        balance: HoprBalance,
    ) -> Result<BoxFuture<'a, Result<ChainReceipt, Self::Error>>, Self::Error>;
}