Block Timestamp

EVM

block.timestamp

Solana

clock::Clock::get()
    .unwrap()
    .unix_timestamp
    .try_into()
    .unwrap();

Last updated