# IProposalValidator

## Interface Description

License: MIT

##

```solidity
interface IProposalValidator
```

The hook contract that proposals may inherit in order to implement extra validation

## Functions info

### validate (0x4216fc04)

```solidity
function validate(
    IGovPool.ProposalAction[] calldata actions
) external view returns (bool valid)
```

The hook function

Parameters:

| Name    | Type                              | Description                |
| ------- | --------------------------------- | -------------------------- |
| actions | struct IGovPool.ProposalAction\[] | the proposal "for" actions |

Return values:

| Name  | Type | Description                                                         |
| ----- | ---- | ------------------------------------------------------------------- |
| valid | bool | "true" if everything is ok, "false" to revert the proposal creation |


---

# 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.dexe.network/contract-interfaces/gov-contracts/proposals/iproposalvalidator.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.
