script { // Usage: bisect-transaction // Find the first version where the time exceeds X. use aptos_framework::timestamp; fun main(_dr_account: signer, _sender: signer) { let time_to_query = 1598390547040813; assert!(Timestamp::now_microseconds() < time_to_query, 1); return } }