cat_gateway/service/common/objects/cardano/mod.rs
1//! Defines API schemas of Cardano Objects.
2//!
3//! These Objects MUST be used in multiple places for multiple things to be considered
4//! common. They should not be simple types. but actual objects.
5//! Simple types belong in `common/types`.
6
7pub(crate) mod hash;
8pub(crate) mod network;
9pub(crate) mod slot_info;
10pub(crate) mod stake_info;