script { // Usage: bisect-transaction // Find the first version where the account is created. use aptos_framework::account; use std::signer; fun main(_dr_account: signer, sender: signer) { let addr = signer::address_of(&sender); if(account::exists_at(addr)) { abort 1 }; return } }