Execute many contract reads in the fewest possible Multicall3 round-trips.
Reads are chunked to maxBatchSize and the chunks run concurrently; results
come back in the exact input order.
Unlike client.public.multicall, plan never rejects on a single failing
read — every result carries a status, so one reverting call can't sink the
whole batch.
Execute many contract reads in the fewest possible Multicall3 round-trips. Reads are chunked to
maxBatchSizeand the chunks run concurrently; results come back in the exact input order.Unlike
client.public.multicall,plannever rejects on a single failing read — every result carries astatus, so one reverting call can't sink the whole batch.