ootle-rs 0.8.0

A Rust library for interacting with the Tari Ootle network.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//   Copyright 2026 The Tari Project
//   SPDX-License-Identifier: BSD-3-Clause

//! Confidential (stealth) transfer support.
//!
//! [`StealthTransfer`] builds stealth transfer statements with Pedersen commitments,
//! encrypted memos, and change outputs. It handles both revealed inputs (e.g. from
//! the faucet) and stealth inputs with spending proofs.

mod builder;
mod error;
mod spec;
mod traits;

pub use builder::*;
pub use error::*;
pub use spec::*;
pub use traits::*;