Calls the "balanceOfBatch" function on the contract.
import { balanceOfBatch } from "thirdweb/extensions/erc1155"; const result = await balanceOfBatch({ contract, owners: ..., tokenIds: ...,});
function balanceOfBatch(options: BaseTransactionOptions<BalanceOfBatchParams>) : Promise<readonly Array<bigint>>
The options for the balanceOfBatch function.
let options: BaseTransactionOptions<BalanceOfBatchParams>;
let returnType: Promise<readonly Array<bigint>>
The parsed result of the function call.