> ## Documentation Index
> Fetch the complete documentation index at: https://mintlify.com/p2pdotme/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Roles and Permissions

> Governance scopes and access control in the P2P Protocol

The protocol defines three governance scopes.

## Super Admin

Launches currencies, sets core risk/limit parameters, and manages critical protocol configuration.

## Admin

Manages operational parameters including spread, merchant fee percentages, disputes, and merchant/payment-channel actions.

## Merchant and User

Scope covers order lifecycle, staking/registration flows, and dispute initiation according to contract rules.

## Access Control Flow

```mermaid theme={null}
flowchart TD
    superAdmin[SuperAdmin]
    admin[Admin]
    users[UsersAndMerchants]
    facets[DiamondFacets]
    state[ProtocolState]

    superAdmin -->|launchCurrencyAndCoreParams| facets
    admin -->|opsParamsFeesDisputes| facets
    users -->|ordersStakingDisputeRaise| facets
    facets --> state
```
