mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 12:21:32 +00:00
23c62f3d5d
* Update to 2024 edition * Update to 2024 edition; fmt, use<> and remove refs * async functions
15 lines
475 B
Rust
15 lines
475 B
Rust
// Copyright 2019-2025 Parity Technologies (UK) Ltd.
|
|
// This file is dual-licensed as Apache-2.0 or GPL-3.0.
|
|
// see LICENSE for license details.
|
|
|
|
//! Types associated with executing View Function calls.
|
|
|
|
mod view_function_types;
|
|
mod view_functions_client;
|
|
|
|
pub use subxt_core::view_functions::payload::{
|
|
DefaultPayload, DynamicPayload, Payload, StaticPayload, dynamic,
|
|
};
|
|
pub use view_function_types::ViewFunctionsApi;
|
|
pub use view_functions_client::ViewFunctionsClient;
|