pot-o-extensions 0.4.0

DeFi, staking, and external-chain extensions for the PoT-O validator
Documentation
//! PoT-O extensions: chain bridge, DeFi client, device protocol, peer network, pool strategy, and proof authority.

pub mod chain_bridge;
pub mod defi;
pub mod device_protocol;
pub mod peer_network;
pub mod pool_strategy;
pub mod security;

pub use chain_bridge::{ChainBridge, SolanaBridge};
pub use defi::{
    DefiClient, EscrowInfo, LiquidityPoolInfo, StakeAccountInfo, StakingPoolInfo, SwapQuoteInfo,
    TreasuryInfo, UserVaultInfo,
};
pub use device_protocol::{
    DeviceProtocol, DeviceStatus, DeviceType, ESP32SDevice, ESP8266Device, NativeDevice, WasmDevice,
};
pub use peer_network::{LocalOnlyNetwork, PeerNetwork};
pub use pool_strategy::{PoolStrategy, SoloStrategy};
pub use security::{Ed25519Authority, ProofAuthority};

/// Central registry that holds the active extension implementations.
/// Constructed once at startup from config/env, then passed by reference.
pub struct ExtensionRegistry {
    pub device: Box<dyn DeviceProtocol>,
    pub network: Box<dyn PeerNetwork>,
    pub pool: Box<dyn PoolStrategy>,
    pub chain: Box<dyn ChainBridge>,
    pub auth: Box<dyn ProofAuthority>,
}

impl ExtensionRegistry {
    /// Build the default registry for single-node local operation.
    pub fn local_defaults(
        solana_rpc_url: &str,
        program_id: &str,
        relayer_keypair_path: &str,
        auto_register_miners: bool,
    ) -> Self {
        Self {
            device: Box::new(NativeDevice::new()),
            network: Box::new(LocalOnlyNetwork::new()),
            pool: Box::new(SoloStrategy),
            chain: Box::new(SolanaBridge::new(
                solana_rpc_url.to_string(),
                program_id.to_string(),
                relayer_keypair_path.to_string(),
                auto_register_miners,
            )),
            auth: Box::new(Ed25519Authority),
        }
    }
}