# withdrawalRequestCount()

### Function withdrawalRequestCount()

{% code title="PendingWithdrawals.sol" %}

```javascript
function withdrawalRequestCount(address provider) external view returns (uint256)
```

{% endcode %}

This function gets the number of pending withdrawals for agiven address.

### Function Arguments

| Name     | Type    | Description                                                     |
| -------- | ------- | --------------------------------------------------------------- |
| provider | address | The address for which to get the number of pending withdrawals. |

### Return Variables

This function returns the number of pending withdrawals.&#x20;

| Variable Type | Returns                                                                         |
| ------------- | ------------------------------------------------------------------------------- |
| uint256       | The returned amount is the number of pending withdrawals for the given address. |
