Skip to main content

neo_devpack_solidity/runtime/
storage.rs

1//! Storage Management Module
2//!
3//! Provides persistent storage for smart contracts with Neo blockchain compatibility.
4
5use super::{RuntimeConfig, RuntimeError};
6use serde::{Deserialize, Serialize};
7use std::collections::{BTreeMap, HashMap};
8
9mod storage_impl;
10mod storage_types;
11
12pub use storage_types::*;
13
14#[cfg(test)]
15mod tests;