1 2 3 4 5 6
pub fn timestamp_sc() -> u64 { std::time::SystemTime::now() .duration_since(std::time::UNIX_EPOCH) .unwrap() .as_secs() }