multiversx_sc/types/
interaction.rs

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
40
41
42
43
44
45
46
mod annotated;
mod back_transfers;
mod callback_closure;
mod callback_selector_result;
mod contract_call_legacy;
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;
pub use callback_closure::{
    new_callback_call, CallbackClosure, CallbackClosureForDeser, CallbackClosureMatcher,
};
pub use callback_selector_result::CallbackSelectorResult;
pub use contract_call_legacy::*;
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>>;