> For the complete documentation index, see [llms.txt](https://docs.parallel.best/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.parallel.best/developers-hub/parallel-governance-token-prl/tokenomics.md).

# Tokenomics

## Overview

The Parallel Tokenomics is a set of contracts that allows :

* to send the fees to the main fee distributor on the destination chain (SideChainFeeDistributor)
* to distribute fees generated by the protocol to the listed fee receivers (MainFeeDistributor)
* users to stake their PRL tokens to earn rewards either in single staking (sPRL1) or in a 80PRL/20WETH balancer pool (BPT) that is deposited into aura.finance (sPRL2).
* distribute rewards to sPRL1/sPRL2 users using off-chain calculation and merkle proofs (RewardMerkleDistributor)

<figure><img src="https://github.com/parallel-protocol/parallel-tokenomics/raw/main/docs/assets/high-level-architecture.png" alt=""><figcaption><p>high level architecture</p></figcaption></figure>

## Security Point

* OpenZeppelin AccessManged dependency is used to manage the access to the contracts.
* Emergency pause mechanisms are implemented in the contracts using the `pause()` and `unpause()` functions from the OpenZeppelin library.
* OpenZeppelin ReentrancyGuard is used to prevent reentrancy attacks.
* Slippage protection on deposit/withdraw that will go through Balancer during sPRL2 flow.

## Deployment

Check the [DeployedAddresses.md](https://github.com/parallel-protocol/parallel-tokenomics/blob/main/docs/Deployment.md) file for the deployed addresses on different networks.

## Documentation for Audits

For more details on the contract, refer to the Audit [details](https://github.com/parallel-protocol/parallel-tokenomics/tree/main/docs/audits).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.parallel.best/developers-hub/parallel-governance-token-prl/tokenomics.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
