neo-decompiler 0.8.1

Neo N3 NEF decompiler: parse, disassemble, lift bytecode to high-level pseudocode and C# skeletons, with a CLI, JSON reports, and optional WebAssembly bindings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod checksum;
mod method_tokens;
mod parse;

/// Parser for Neo N3 NEF containers.
///
/// This type is stateless and can be reused across many parse calls.
#[derive(Debug, Default, Clone, Copy)]
pub struct NefParser;

impl NefParser {
    /// Create a new NEF parser.
    #[must_use]
    pub fn new() -> Self {
        Self
    }
}