Skip to main content

xrpl_escrow_stdlib/
lib.rs

1#![doc = include_str!("../README.md")]
2#![cfg_attr(target_arch = "wasm32", no_std)]
3
4#[cfg(not(target_arch = "wasm32"))]
5extern crate std;
6
7pub mod ctx;
8pub mod current_tx;
9pub mod ledger_objects;
10
11pub use ctx::escrow_finish::EscrowFinishContext;
12pub use ctx::finish_result::FinishResult;