# WETH9

## Functions

###

```solidity
function () public
```

###

```solidity
function () external
```

###

```solidity
function () public
```

###

```solidity
function (
    uint256 wad
) public
```

#### Parameters

| Name  | Type    | Description |
| ----- | ------- | ----------- |
| `wad` | uint256 |             |

###

```solidity
function () public returns (uint256)
```

###

```solidity
function (
    address guy,
    uint256 wad
) public returns (bool)
```

#### Parameters

| Name  | Type    | Description |
| ----- | ------- | ----------- |
| `guy` | address |             |
| `wad` | uint256 |             |

###

```solidity
function (
    address dst,
    uint256 wad
) public returns (bool)
```

#### Parameters

| Name  | Type    | Description |
| ----- | ------- | ----------- |
| `dst` | address |             |
| `wad` | uint256 |             |

###

```solidity
function (
    address src,
    address dst,
    uint256 wad
) public returns (bool)
```

#### Parameters

| Name  | Type    | Description |
| ----- | ------- | ----------- |
| `src` | address |             |
| `dst` | address |             |
| `wad` | uint256 |             |

## Events

### Approval

```solidity
event Approval(
    address src,
    address guy,
    uint256 wad
)
```

#### Parameters

| Name         | Type    | Description |
| ------------ | ------- | ----------- |
| `src`        | address |             |
| `guy`        | address |             |
| `wad`        | uint256 |             |
| ### Transfer |         |             |

```solidity
event Transfer(
    address src,
    address dst,
    uint256 wad
)
```

#### Parameters

| Name        | Type    | Description |
| ----------- | ------- | ----------- |
| `src`       | address |             |
| `dst`       | address |             |
| `wad`       | uint256 |             |
| ### Deposit |         |             |

```solidity
event Deposit(
    address dst,
    uint256 wad
)
```

#### Parameters

| Name           | Type    | Description |
| -------------- | ------- | ----------- |
| `dst`          | address |             |
| `wad`          | uint256 |             |
| ### Withdrawal |         |             |

```solidity
event Withdrawal(
    address src,
    uint256 wad
)
```

#### Parameters

| Name  | Type    | Description |
| ----- | ------- | ----------- |
| `src` | address |             |
| `wad` | uint256 |             |


---

# 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.essencefinance.io/development/smart-contracts/external/weth9.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.
