06ab693b4c
- Update copyright from 'Parity Technologies (UK) Ltd.' to 'Dijital Kurdistan Tech Institute' - Update year to 2026 - Mark doc tests with relative metadata paths as 'ignore' to fix workspace-level doc tests - Affected files: runtime_apis.rs, storage.rs, constants.rs, transactions.rs, codegen.rs The doc tests use relative paths like '../artifacts/*.scale' which only work when testing the crate directly (-p pezkuwi-subxt), not during workspace-level tests. The examples/ directory contains the actual runnable test code.
19 lines
703 B
Rust
19 lines
703 B
Rust
// Copyright 2019-2026 Dijital Kurdistan Tech Institute
|
|
// This file is dual-licensed as Apache-2.0 or GPL-3.0.
|
|
// see LICENSE for license details.
|
|
|
|
//! This module provides two clients that can be used to work with
|
|
//! transactions, storage and events. The [`OfflineClient`] works
|
|
//! entirely offline and can be passed to any function that doesn't
|
|
//! require network access. The [`OnlineClient`] requires network
|
|
//! access.
|
|
|
|
mod offline_client;
|
|
mod online_client;
|
|
|
|
pub use offline_client::{OfflineClient, OfflineClientT};
|
|
pub use online_client::{
|
|
ClientRuntimeUpdater, OnlineClient, OnlineClientT, RuntimeUpdaterStream, Update,
|
|
};
|
|
pub use pezkuwi_subxt_core::client::{ClientState, RuntimeVersion};
|