Skip to main content

neo_devpack_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
18mod runtime_parts;
19
20pub use runtime_parts::*;
21
22#[cfg(test)]
23mod tests;