tap_core 6.0.2

Core Timeline Aggregation Protocol library: a fast, efficient and trustless unidirectional micro-payments system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2023-, Semiotic AI, Inc.
// SPDX-License-Identifier: Apache-2.0

//! Context adapters for the TAP manager.
//!
//! Each adapter should be defined by the user of the library based on their
//! specific storage and verification requirements. This modular design
//! allows for easy integration with various storage solutions and verification
//! procedures, thereby making the library adaptable to a wide range of use cases.

mod rav;
mod receipt;
mod signature;

pub use rav::*;
pub use receipt::*;
pub use signature::SignatureChecker;