ootle_rs/lib.rs
1// Copyright 2026 The Tari Project
2// SPDX-License-Identifier: BSD-3-Clause
3
4pub mod builtin_templates;
5pub mod key_provider;
6pub mod provider;
7pub mod signer;
8pub mod transaction;
9pub mod wallet;
10
11#[macro_use]
12pub mod macros;
13
14mod helpers;
15pub mod keys;
16pub mod stealth;
17mod types;
18
19// Re-export the address macro from the ootle_address crate
20pub use helpers::*;
21pub use tari_ootle_address::address;
22pub use types::*;