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
26
27
28
29
30
31
32
33
34
35
36
37
#![recursion_limit = "256"]
#![allow(clippy::type_complexity)]
#![allow(clippy::too_many_arguments)]

#[macro_use]
extern crate substrate_subxt;

mod r#abstract;
mod client;
mod error;
#[cfg(feature = "light-client")]
mod light_client;
mod runtime;
mod srml;
mod utils;

pub use client::Client;
pub use error::Error;
#[cfg(feature = "light-client")]
pub use light_client::ChainType;
pub use r#abstract::AbstractClient;
pub use runtime::Runtime;
pub use srml::{
    bank::Bank,
    bounty::Bounty,
    donate::Donate,
    org::Org,
    vote::Vote,
};
pub use utils::{
    Account,
    AccountShare,
    InvalidSs58,
    InvalidSuri,
    Ss58,
    Suri,
};