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