diff --git a/core/src/lib.rs b/core/src/lib.rs index 1d17df4..3329f82 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -77,4 +77,13 @@ pub use multiversx_sc::types::CodeMetadata; /// functionalities for executing transactions and queries against the blockchain. pub mod executor { pub use novax_executor::*; +} + +/// The `data` module provides re-exports of functionalities from the `novax_data` crate. +/// +/// This module acts as an interface to the `novax_data` crate, facilitating access to its +/// provided features for handling data structures, storage mechanisms, and other data-related +/// operations used within the blockchain context. +pub mod data { + pub use novax_data::*; } \ No newline at end of file