cat_gateway/service/common/objects/cardano/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
//! Defines API schemas of Cardano Objects.
//!
//! These Objects MUST be used in multiple places for multiple things to be considered
//! common. They should not be simple types. but actual objects.
//! Simple types belong in `common/types`.

pub(crate) mod cip36; // TODO: Not common, to be removed once code refactored.
pub(crate) mod hash;
pub(crate) mod network;
pub(crate) mod registration_info;
pub(crate) mod slot_info;
pub(crate) mod stake_info;
pub(crate) mod sync_state;