Calls the "isTransferEnabled" function on the contract.
import { TransferableERC721 } from "thirdweb/modules"; const result = await TransferableERC721.isTransferEnabled({ contract,});
function isTransferEnabled( options: BaseTransactionOptions,): Promise<boolean>;
The options for the isTransferEnabled function.
let options: { contract: ThirdwebContract<abi> } & T;
let returnType: Promise<boolean>;
The parsed result of the function call.