use serde::{Deserialize, Serialize};
use std::collections::HashMap;
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct EyeCell {
pub pulse_id: u32,
pub state_crc: u32,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct NodeMatrixRow {
pub address: String,
pub current_rank: String,
pub balance: u64,
pub step_number: u32,
pub history: HashMap<u32, EyeCell>,
}