tangle_subxt/lib.rs
1#![deny(stable_features, non_shorthand_field_patterns, renamed_and_removed_lints, unsafe_code)]
2
3pub use parity_scale_codec;
4pub use scale_info;
5#[cfg(any(feature = "std", feature = "web"))]
6pub use subxt;
7#[cfg(any(feature = "std", feature = "web"))]
8pub use subxt::ext::subxt_core;
9#[cfg(not(any(feature = "std", feature = "web")))]
10pub use subxt_core;
11pub use subxt_signer;
12
13// #[cfg_attr(rustfmt, rustfmt::skip)]
14// pub mod tangle_mainnet_runtime;
15#[rustfmt::skip]
16pub mod tangle_testnet_runtime;
17
18mod field_ext;
19pub use field_ext::*;