> ## Documentation Index
> Fetch the complete documentation index at: https://base-a060aa97-docs-sync-code-change-be6d045.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# IPolicyRegistry.pendingPolicyAdmin

> Generated B20 reference for pendingPolicyAdmin(uint64).

## Signature

```solidity IPolicyRegistry.sol theme={null}
function pendingPolicyAdmin(uint64 policyId) external view returns (address);
```

| Field               | Value                        |
| ------------------- | ---------------------------- |
| Selector            | `0x017548b7`                 |
| Canonical signature | `pendingPolicyAdmin(uint64)` |

## Description

Returns the currently-staged pending admin for `policyId`, or `address(0)` when
no transfer is in flight or for built-in sentinels, unknown IDs, and malformed IDs.
Never reverts.

**Parameters**

| Name       | Type     | Description      |
| ---------- | -------- | ---------------- |
| `policyId` | `uint64` | Policy to query. |

**Returns**

| Type      | Description                                                 |
| --------- | ----------------------------------------------------------- |
| `address` | Pending admin, or `address(0)` if no transfer is in flight. |

## Access Control

Read-only. Always callable regardless of whether the PolicyRegistry feature is active.

## Example

```solidity Usage Example theme={null}
IPolicyRegistry(target).pendingPolicyAdmin(arg0);
```
