foundry_common/provider/mpp/mod.rs
1//! MPP (Machine Payments Protocol) support for 402-gated RPC endpoints.
2//!
3//! - [`keys`]: Auto-discovery of signing keys from the Tempo wallet.
4//! - [`transport`]: HTTP transport that handles 402 challenges automatically.
5
6pub mod keys;
7pub mod persist;
8pub mod session;
9pub mod transport;
10pub mod ws;