dist_agent_lang 1.0.3

A hybrid programming language for decentralized and centralized network integration
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod engine;
pub mod functions;
pub mod scope;
pub mod values;
pub mod types;
pub mod reentrancy;
pub mod safe_math;
pub mod state_isolation;
pub mod advanced_security;
pub mod transaction;

pub use engine::Runtime;

// Re-export security modules for testing and external use
pub use reentrancy::ReentrancyGuard;
pub use safe_math::SafeMath;
pub use state_isolation::StateIsolationManager;
pub use transaction::{TransactionManager, IsolationLevel, TransactionError, StateStorage, InMemoryStorage};