r402-keeta 0.17.1

Keeta chain support for the x402 payment protocol.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Keeta chain support for x402 payments.
//!
//! - [`KeetaChainReference`] — CAIP-2 `21378` / `1413829460`
//! - [`KeetaAddress`] — `keeta_…` public-key string
//! - [`KeetaTokenDeployment`] — token metadata
//! - [`KeetaChainProvider`] — facilitator fee payers (feature `facilitator`)

/// Core Keeta chain types (addresses, references, token deployments).
pub mod types;
pub use types::*;

/// Keeta chain provider implementation.
#[cfg(feature = "facilitator")]
pub mod provider;
#[cfg(feature = "facilitator")]
pub use provider::*;