Calls the "isApprovedForAll" function on the contract.
import { isApprovedForAll } from "thirdweb/extensions/erc1155"; const result = await isApprovedForAll({ contract, owner: ..., operator: ...,});
function isApprovedForAll( options: BaseTransactionOptions<IsApprovedForAllParams>,): Promise<boolean>;
The options for the isApprovedForAll function.
let options: BaseTransactionOptions<IsApprovedForAllParams>;
let returnType: Promise<boolean>;
The parsed result of the function call.