xrpl_escrow_stdlib/current_tx/mod.rs
1//! ## Example
2//!
3//! Get sender Account and optional flags:
4//!
5//! ```no_run
6//! use xrpl_escrow_stdlib::current_tx::escrow_finish::EscrowFinish;
7//! use xrpl_wasm_stdlib::core::current_tx::traits::TransactionCommonFields;
8//! let tx = EscrowFinish;
9//! let account = tx.get_account().unwrap_or_panic();
10//! let _flags = tx.get_flags().unwrap_or_panic();
11//! ```
12
13pub mod escrow_finish;
14pub mod traits;