tangle_subxt/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#![deny(
	trivial_casts,
	trivial_numeric_casts,
	stable_features,
	non_shorthand_field_patterns,
	renamed_and_removed_lints,
	unsafe_code,
	clippy::exhaustive_enums
)]
#![allow(clippy::all, clippy::exhaustive_enums)]

pub use parity_scale_codec;
pub use scale_info;
#[cfg(any(feature = "std", feature = "web"))]
pub use subxt;
#[cfg(any(feature = "std", feature = "web"))]
pub use subxt::ext::subxt_core;
#[cfg(not(any(feature = "std", feature = "web")))]
pub use subxt_core;
pub use subxt_signer;

// #[cfg_attr(rustfmt, rustfmt::skip)]
// pub mod tangle_mainnet_runtime;
#[cfg_attr(rustfmt, rustfmt::skip)]
pub mod tangle_testnet_runtime;