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

# IPolicyRegistry.renounceAdmin

> Generated B20 reference for renounceAdmin(uint64).

[Related concept](/base-chain/specs/upgrades/beryl/b20/specification/concepts/policies-and-scopes)

## Signature

```solidity theme={null}
function renounceAdmin(uint64 policyId) external;
```

| Field               | Value                   |
| ------------------- | ----------------------- |
| Selector            | `0xefdb7fa3`            |
| Canonical signature | `renounceAdmin(uint64)` |

## Description

Permanently relinquishes administration of `policyId`. The member set is frozen
and the policy can never be re-administered; `isAuthorized` queries continue to work.
Dev: Reverts with `PolicyNotFound` when `policyId` does not exist.
Dev: Reverts with `Unauthorized` when the caller is not the current admin.
Param: policyId Policy whose administration is being renounced.

## Access control

Callable by the policy admin for the target policy.

## Policy interaction

This is part of the singleton PolicyRegistry surface used by B20 policy scopes.

## Example

```solidity theme={null}
IPolicyRegistry(target).renounceAdmin(arg0);
```

## Related

* [IPolicyRegistry reference](/base-chain/specs/upgrades/beryl/b20/specification/reference/interfaces/IPolicyRegistry)
* [Constants & addresses](/base-chain/specs/upgrades/beryl/b20/specification/reference/constants-and-addresses)
