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
//! State Management Module
//!
//! Manages account states, balances, and transaction state for Neo runtime.

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

mod state_impl;
mod state_types;

pub use state_types::*;

#[cfg(test)]
mod tests;