//! Clients for interacting with Starknet nodes and sequencers.
//!
//! This crate provides the [`Provider`] trait for abstraction over means of accessing the Starknet
//! network. The most commonly used implementation is [`JsonRpcClient`] with
//! [`HttpTransport`](jsonrpc::HttpTransport).
pub use ;
// Sequencer-related functionalities are mostly deprecated so we skip the docs.
/// Module containing types related to the (now deprecated) sequencer gateway client.
pub use ;
/// Module containing types related to JSON-RPC clients and servers.
pub use JsonRpcClient;
pub use AnyProvider;
// Re-export
pub use Url;