#![no_std]
#![allow(deprecated)]
pub use multiversx_sc_derive::{self as derive, contract, module, proxy};
extern crate alloc;
pub use multiversx_sc_codec as codec;
pub use multiversx_chain_core as chain_core;
pub use crate::codec::arrayvec;
pub mod abi;
pub mod api;
pub mod contract_base;
pub mod err_msg;
pub mod external_view_contract;
pub mod formatter;
pub mod hex_call_data;
pub mod io;
pub mod log_util;
mod macros;
pub mod non_zero_util;
pub mod storage;
pub mod tuple_util;
pub mod types;
pub use hex_call_data::*;
pub use hex_literal;
pub use storage::{storage_clear, storage_get, storage_get_len, storage_set};
pub mod imports;
pub mod derive_imports;
pub mod proxy_imports {
pub use super::{derive_imports::*, imports::*};
}