openzeppelin_monitor/services/mod.rs
1//! Core services implementing the business logic.
2//!
3//! This module contains the main service implementations:
4//! - `blockchain`: Blockchain client interfaces and implementations
5//! - `blockwatcher`: Block monitoring and processing
6//! - `filter`: Transaction and event filtering logic
7//! - `notification`: Alert and notification handling
8//! - `trigger`: Trigger evaluation and execution
9
10pub mod blockchain;
11pub mod blockwatcher;
12pub mod filter;
13pub mod notification;
14pub mod trigger;