cuprate_test_utils/rpc/data/
mod.rs

1//! Monero RPC data.
2//!
3//! This module contains real `monerod` RPC requests/responses
4//! as `const` [`str`]s and byte arrays (binary).
5//!
6//! The strings include the JSON-RPC 2.0 portions of the JSON.
7//! - Tests exist within this crate that ensure the JSON is valid
8//! - Tests exist within Cuprate's `rpc/` crates that ensure these strings (de)serialize as valid types
9//!
10//! # Determinism
11//! Note that although both request/response data is defined,
12//! they aren't necessarily tied to each other, i.e. the request
13//! will not deterministically lead to the response.
14
15pub mod bin;
16pub mod json;
17mod macros;
18pub mod other;