# EeseeProxy

## callExternal

```solidity
function callExternal(address to, bytes data) external payable returns (bytes)
```

*Call any external contract function.*

### Parameters

| Name | Type    | Description               |
| ---- | ------- | ------------------------- |
| to   | address | - Address to call.        |
| data | bytes   | - Data to call {to} with. |

### Return Values

| Name | Type  | Description                               |
| ---- | ----- | ----------------------------------------- |
| \[0] | bytes | bytes - Return data received from a call. |
