Calls the "isTransferEnabled" function on the contract.
import { TransferableERC20 } from "thirdweb/modules"; const result = await TransferableERC20.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.