> For the complete documentation index, see [llms.txt](https://docs.carbondefi.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.carbondefi.xyz/contracts-and-functions/carboncontroller-functions/data-and-events/feeswithdrawn.md).

# FeesWithdrawn()

{% code title="" overflow="wrap" %}

```solidity
    event FeesWithdrawn
    (Token indexed token, address indexed recipient, uint256 indexed amount, address sender);


```

{% endcode %}

This event is emitted when fees are withdrawn.

### Event Parameters

| Name      | Type    | Description                             |
| --------- | ------- | --------------------------------------- |
| token     | address | The token in which fees were withdrawn. |
| recipient | address | The address of the fee receiver.        |
| amount    | uint256 | The number of tokens.                   |
| sender    | address | The address of the sender.              |
