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;
8
9pub use ctx::escrow_finish::EscrowFinishContext;
10pub use xrpl_wasm_stdlib::*;