neo-devpack-solidity 0.22.0

Production-focused Solidity-to-NeoVM compilation system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Storage Management Module
//!
//! Provides persistent storage for smart contracts with Neo blockchain compatibility.

use super::{RuntimeConfig, RuntimeError};
use serde::{Deserialize, Serialize};
use std::collections::{BTreeMap, HashMap};

mod storage_impl;
mod storage_types;

pub use storage_types::*;

#[cfg(test)]
mod tests;