sol_cerberus/utils/
time.rs

1use anchor_lang::prelude::*;
2
3pub fn utc_now() -> i64 {
4    // Total number of seconds since the Unix epoch.
5    Clock::get().unwrap().unix_timestamp
6}