scematica_protocol/
lib.rs1pub mod client;
2pub mod facilitator;
3pub mod middleware;
4pub mod opendexter;
5pub mod scheme;
6pub mod server;
7pub mod types;
8
9pub use facilitator::Facilitator;
10pub use middleware::PaymentGate;
11pub use opendexter::{
12 MarketplaceApi, MarketplaceSearchRequest, OpenDexterClient, PaidFetchResponse, PaymentOption,
13 PriceCheck, WalletStatus, DEFAULT_MIN_QUALITY_SCORE, DEFAULT_SEARCH_LIMIT,
14 DEFAULT_X402_MAX_USDC, SCEMATICA_X402_ALLOW_UNKNOWN_PRICE_ENV,
15 SCEMATICA_X402_MARKETPLACE_URL_ENV, SCEMATICA_X402_MAX_USDC_ENV,
16};
17pub use server::ProtocolServer;
18pub use types::{
19 PaymentPayload, PaymentRequired, PaymentRequirements, SettlementResponse, SvmExactPayload,
20 VerifyResponse, X402_VERSION,
21};