neo-devpack-solidity 0.22.0

Production-focused Solidity-to-NeoVM compilation system
Documentation
//! Neo Runtime Module
//!
//! Complete runtime integration layer providing EVM compatibility on NeoVM,
//! state management, storage operations, and execution environment.

pub mod bridge;
pub mod execution;
pub mod spec;
pub mod state;
pub mod storage;
pub mod types;

use hex;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use thiserror::Error;

mod runtime_parts;

pub use runtime_parts::*;

#[cfg(test)]
mod tests;