scematica-protocol 1.11.0

Scematica Protocol: Rust-native x402 HTTP 402 payment standard for Solana
Documentation
pub mod client;
pub mod facilitator;
pub mod middleware;
pub mod opendexter;
pub mod scheme;
pub mod server;
pub mod types;

pub use facilitator::Facilitator;
pub use middleware::PaymentGate;
pub use opendexter::{
    MarketplaceApi, MarketplaceSearchRequest, OpenDexterClient, PaidFetchResponse, PaymentOption,
    PriceCheck, WalletStatus, DEFAULT_MIN_QUALITY_SCORE, DEFAULT_SEARCH_LIMIT,
    DEFAULT_X402_MAX_USDC, SCEMATICA_X402_ALLOW_UNKNOWN_PRICE_ENV,
    SCEMATICA_X402_MARKETPLACE_URL_ENV, SCEMATICA_X402_MAX_USDC_ENV,
};
pub use server::ProtocolServer;
pub use types::{
    PaymentPayload, PaymentRequired, PaymentRequirements, SettlementResponse, SvmExactPayload,
    VerifyResponse, X402_VERSION,
};