1 2 3 4 5 6 7 8 9 10
use serde::{Deserialize, Serialize}; #[derive(Clone, Serialize, Deserialize, Debug)] pub struct ValidatorHeartbeatV1 { pub address: String, pub hash: String, pub height: u64, pub signature: String, pub version: u64, }