ootle-rs 0.5.0

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

use tari_crypto::ristretto::RistrettoSecretKey;

/// A trait for types that own a view-only key secret.
/// The view-only secret allows UTXOs to be decrypted but not spent.
pub trait HasViewOnlyKeySecret {
    fn view_only_secret(&self) -> &RistrettoSecretKey;
}