neo_solidity/runtime/
mod.rs

1//! Neo Runtime Module
2//!
3//! Complete runtime integration layer providing EVM compatibility on NeoVM,
4//! state management, storage operations, and execution environment.
5
6pub mod bridge;
7pub mod execution;
8pub mod spec;
9pub mod state;
10pub mod storage;
11pub mod types;
12
13use hex;
14use serde::{Deserialize, Serialize};
15use std::collections::HashMap;
16use thiserror::Error;
17
18include!("runtime_parts/runtime_types.rs");
19include!("runtime_parts/runtime_impl.rs");
20
21#[cfg(test)]
22mod tests;