# IBaseVaultDeployer

Interface for vault deployer

## Functions

### baseVaultParameters

Vault parameters for vault deployment

*Necessary to support deterministic vault deployments*

```solidity
function baseVaultParameters() external view returns (BaseVaultParameters memory);
```

**Returns**

| Name     | Type                  | Description                                                                                   |
| -------- | --------------------- | --------------------------------------------------------------------------------------------- |
| `<none>` | `BaseVaultParameters` | parameters Parameters used for vault deployment, including owner, submit hooks, and whitelist |

## Errors

### Aera\_\_DescriptionIsEmpty

Thrown when vault description is empty

```solidity
error Aera__DescriptionIsEmpty();
```

### Aera\_\_VaultAddressMismatch

Thrown when deployed vault address doesn't match expected address

```solidity
error Aera__VaultAddressMismatch(address deployed, address expected);
```

**Parameters**

| Name       | Type      | Description                   |
| ---------- | --------- | ----------------------------- |
| `deployed` | `address` | Address of the deployed vault |
| `expected` | `address` | Expected address of the vault |


---

# 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.aera.finance/the-protocol/core/ibasevaultdeployer.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.
