mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-10 07:37:57 +00:00
ac606cf625
* Rename traits to renmove T suffix * Fix doc links * Fix straggler doc links
13 lines
374 B
Rust
13 lines
374 B
Rust
// Copyright 2019-2023 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 accessing constants.
|
|
|
|
mod constants_client;
|
|
|
|
pub use constants_client::ConstantsClient;
|
|
pub use subxt_core::constants::address::{
|
|
dynamic, Address, DefaultAddress, DynamicAddress, StaticAddress,
|
|
};
|