1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! # neo_builder::script
//!
//! This module provides utilities for building and reading Neo smart contract scripts.
//!
//! ## Modules
//!
//! ### `interop_service`
//!
//! Contains the [`InteropService`] enum, which represents various system calls available in the Neo virtual machine.
//!
//! ### `script_builder`
//!
//! Provides the [`ScriptBuilder`] struct for constructing Neo smart contract scripts programmatically.
//!
//! ### `script_reader`
//!
//! Offers the [`ScriptReader`] struct for parsing and interpreting Neo smart contract scripts.
//!
//! ## Usage
//!
//! To use the functionality provided by this module, you can import the necessary components:
//!
//! ```rust
//! use neo3::neo_builder::{InteropService, ScriptBuilder, ScriptReader};
//! ```
//!
//! [`InteropService`]: interop_service::InteropService
//! [`ScriptBuilder`]: script_builder::ScriptBuilder
//! [`ScriptReader`]: script_reader::ScriptReader
pub use *;
pub use *;
pub use *;