# Batch Actions

In addition to [batch create](/for-developers/hats-protocol-for-developers/creating-hats.md#batch-creation) and [batch mint](/for-developers/hats-protocol-for-developers/minting-hats.md#batch-minting), any set of Hats.sol functions can be batched together into a single transaction.

This is made possible by [Multicallable](https://github.com/Vectorized/solady/blob/main/src/utils/Multicallable.sol) — from which Hats.sol inherits — which adds a non-payable `multicall` function to the contract. This enables EOAs to make multiple calls to the contract atomically, unlocking a number of useful batch operations that were previously only available to smart contracts.

For example,&#x20;


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.hatsprotocol.xyz/for-developers/hats-protocol-for-developers/batch-actions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
