1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![deny(clippy::unwrap_used)]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#[cfg(feature = "component")]
pub mod component;

pub mod event;

mod action;
pub use action::{CommunityPoolDeposit, CommunityPoolOutput, CommunityPoolSpend};

pub mod genesis;
pub mod params;

#[cfg(feature = "component")]
pub use component::{StateReadExt, StateWriteExt};