neo3 1.0.9

Production-ready Rust SDK for Neo N3 blockchain with high-level API, unified error handling, and enterprise features
Documentation
pub use common::*;
pub use http_provider::{ClientError, HttpProvider};
#[cfg(all(feature = "ipc", any(unix, windows)))]
pub use ipc::{Ipc, IpcError};
#[cfg(feature = "legacy-ws")]
pub use legacy_ws::{ClientError as WsClientError, Ws};
#[cfg(any(test, feature = "mock"))]
pub use mock::{MockProvider, MockResponse};
pub use retry::*;
pub use rw::{RwClient, RwClientError};
#[cfg(all(feature = "ws", not(feature = "legacy-ws")))]
pub use ws::{ConnectionDetails, WsClient as Ws, WsClientError};

pub use self::http_provider::{ClientError as HttpClientError, HttpProvider as Http};

mod http_provider;
#[cfg(all(feature = "ipc", any(unix, windows)))]
mod ipc;
// mod quorum;
// pub use quorum::{JsonRpcClientWrapper, Quorum, QuorumError, QuorumProvider, WeightedProvider};

mod common;
/// archival websocket
#[cfg(feature = "legacy-ws")]
pub mod legacy_ws;
#[cfg(any(test, feature = "mock"))]
mod mock;
mod retry;
mod rw;
#[cfg(all(feature = "ws", not(feature = "legacy-ws")))]
mod ws;