mithril_cardano_node_chain/entities/mod.rs
1//! The entities used when interacting with the chain.
2
3mod chain_block_next_action;
4mod datum;
5mod raw_cardano_point;
6mod scanned_block;
7
8pub use chain_block_next_action::*;
9pub use datum::*;
10pub use raw_cardano_point::*;
11pub use scanned_block::*;
12
13/// [ChainAddress] represents an on chain address.
14pub type ChainAddress = String;