ootle-rs 0.4.0

A Rust library for interacting with the Tari Ootle network.
//   Copyright 2026 The Tari Project
//   SPDX-License-Identifier: BSD-3-Clause
use tari_ootle_wallet_crypto::{StealthCryptoApiError, StealthProofError};
use tari_template_lib_types::{Amount, UtxoAddress, crypto::PedersenCommitmentBytes};

#[derive(Debug, thiserror::Error)]
pub enum StealthProviderError {
    #[error("Crypto error generating proof: {0}")]
    StealthProofError(#[from] StealthProofError),
    #[error("Crypto error generating bullet proof: {0}")]
    CryptoApiError(#[from] StealthCryptoApiError),
    #[error("Invalid destination address: {details}")]
    InvalidDestinationAddress { details: String },
    #[error("Range proof error: {details}")]
    RangeProofError { details: String },
    #[error("Blocking task panicked: {details}")]
    SpawnBlockingPanic { details: String },
    #[error("Invalid input for spending: {0}")]
    InvalidInput(InvalidStealthInputError),
    #[error("Unexpected error: {details}")]
    UnexpectedError { details: String },
    #[error(
        "Unbalanced transfer: total input amount ({total_revealed_input} revealed + blinded inputs) does not equal \
         total outputs amount ({output_amount})"
    )]
    UnbalancedTransfer {
        total_revealed_input: Amount,
        output_amount: Amount,
    },
    #[error("Failed to decrypt input with commitment {commitment}: {details}")]
    DecryptionFailed {
        commitment: PedersenCommitmentBytes,
        details: String,
    },
}

#[derive(Debug, thiserror::Error)]
pub enum InvalidStealthInputError {
    #[error("Input UTXO not found")]
    UtxoNotFound,
    #[error("Input UTXO {address} is frozen and cannot be spent")]
    UtxoIsFrozen { address: UtxoAddress },
    #[error("Input UTXO {address} is burnt and cannot be spent")]
    UtxoIsBurnt { address: UtxoAddress },
}