Prepares a transaction to call the "cancelOwnershipHandover" function on the contract.
import { sendTransaction } from "thirdweb";import { cancelOwnershipHandover } from "thirdweb/extensions/modules"; const transaction = cancelOwnershipHandover(); // Send the transactionawait sendTransaction({ transaction, account });
function cancelOwnershipHandover( options: BaseTransactionOptions,): PreparedTransaction<any, AbiFunction, PrepareTransactionOptions>;
The options for the "cancelOwnershipHandover" function.
let options: { contract: ThirdwebContract<abi> } & T;
let returnType: PreparedTransaction< any, AbiFunction, PrepareTransactionOptions>;
A prepared transaction object.