withdrawalRequestCount()

This function is in the PendingWithdrawals.sol contract.

Function withdrawalRequestCount()

PendingWithdrawals.sol
function withdrawalRequestCount(address provider) external view returns (uint256)

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.

Variable Type
Returns

uint256

The returned amount is the number of pending withdrawals for the given address.

Last updated