multiversx-sc 0.66.0

MultiversX smart contract API
Documentation
mod annotated;
mod back_transfers;
mod callback_closure;
mod callback_selector_result;
mod expr;
mod managed_arg_buffer;
mod markers;
mod result_handlers;
pub mod system_proxy;
mod tx;
mod tx_data;
mod tx_env;
mod tx_exec;
mod tx_from;
mod tx_gas;
mod tx_payment;
mod tx_proxy;
mod tx_result_handler;
mod tx_result_handler_list;
mod tx_to;

pub use annotated::*;
pub use back_transfers::{BackTransfers, BackTransfersLegacy};
pub use callback_closure::{
    CallbackClosure, CallbackClosureForDeser, CallbackClosureMatcher, new_callback_call,
};
pub use callback_selector_result::CallbackSelectorResult;
pub use expr::*;
pub use managed_arg_buffer::ManagedArgBuffer;
pub use markers::*;
pub use result_handlers::*;
pub use tx::*;
pub use tx_data::*;
pub use tx_env::*;
pub use tx_exec::*;
pub use tx_from::*;
pub use tx_gas::*;
pub use tx_payment::*;
pub use tx_proxy::*;
pub use tx_result_handler::{TxEmptyResultHandler, TxResultHandler};
pub use tx_result_handler_list::*;
pub use tx_to::*;

pub type TxScBase<Api> = TxBaseWithEnv<TxScEnv<Api>>;

#[cfg(feature = "contract-call-legacy")]
mod contract_call_legacy;
#[cfg(feature = "contract-call-legacy")]
pub use contract_call_legacy::*;