titan_types/
stats.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Serialize, Deserialize)]
4pub struct BlockTip {
5    pub height: u64,
6    pub hash: String,
7}
8
9#[derive(Debug, Serialize, Deserialize)]
10pub struct Status {
11    pub block_tip: BlockTip,
12    pub runes_count: u64,
13    pub mempool_tx_count: u64,
14}