Skip to content

Commit 9263ff7

Browse files
committed
fix: Move signature validation to repository layer with BlockChainType rules
1 parent 61c20fc commit 9263ff7

File tree

141 files changed

+57686
-57675
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+57686
-57675
lines changed

Cargo.lock

Lines changed: 920 additions & 952 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/bootstrap/mod.rs

Lines changed: 1412 additions & 1412 deletions
Large diffs are not rendered by default.

src/lib.rs

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
//! Blockchain monitoring and notification service.
2-
//!
3-
//! This library provides functionality for monitoring blockchain networks and triggering
4-
//! notifications based on configurable conditions. It includes:
5-
//!
6-
//! - Configuration management through JSON files
7-
//! - Blockchain network monitoring and event filtering
8-
//! - Customizable notification triggers and actions
9-
//! - Extensible repository and service architecture
10-
//!
11-
//! # Module Structure
12-
//!
13-
//! - `bootstrap`: Bootstraps the application
14-
//! - `models`: Data structures for configuration and blockchain data
15-
//! - `repositories`: Configuration storage and management
16-
//! - `services`: Core business logic and blockchain interaction
17-
//! - `utils`: Common utilities and helper functions
18-
19-
pub mod bootstrap;
20-
pub mod models;
21-
pub mod repositories;
22-
pub mod services;
23-
pub mod utils;
1+
//! Blockchain monitoring and notification service.
2+
//!
3+
//! This library provides functionality for monitoring blockchain networks and triggering
4+
//! notifications based on configurable conditions. It includes:
5+
//!
6+
//! - Configuration management through JSON files
7+
//! - Blockchain network monitoring and event filtering
8+
//! - Customizable notification triggers and actions
9+
//! - Extensible repository and service architecture
10+
//!
11+
//! # Module Structure
12+
//!
13+
//! - `bootstrap`: Bootstraps the application
14+
//! - `models`: Data structures for configuration and blockchain data
15+
//! - `repositories`: Configuration storage and management
16+
//! - `services`: Core business logic and blockchain interaction
17+
//! - `utils`: Common utilities and helper functions
18+
19+
pub mod bootstrap;
20+
pub mod models;
21+
pub mod repositories;
22+
pub mod services;
23+
pub mod utils;

0 commit comments

Comments
 (0)