isTransferEnabled

Calls the "isTransferEnabled" function on the contract.

Example

import { TransferableERC721 } from "thirdweb/modules";
const result = await TransferableERC721.isTransferEnabled({
contract,
});
function isTransferEnabled(
): Promise<boolean>;

Parameters

The options for the isTransferEnabled function.

Type

let options: { contract: ThirdwebContract<abi> } & T;

Returns

let returnType: Promise<boolean>;

The parsed result of the function call.