> For the complete documentation index, see [llms.txt](https://allovr.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://allovr.gitbook.io/docs/whitepaper/a-next-generation-decentralized-autonomous-art-network/appendix-1-proposed-allovr-staking-mechanism.md).

# Appendix 1: Proposed ALLOVR Staking Mechanism

## Introduction

The ovr-program exposes a permissionless function which executes an inflation run. It ensures that the minting of new AOVR tokens can only be executed once a week by recording the previous execution time of the previous run on-chain. During execution, a percentage of the total supply of AOVR is minted and the new tokens are to arbitrary addresses e.g., ALLOVR DAO treasury. However, there is a limit to how many accounts the newly minted AOVR can be sent to, driven by the maximum message size of Solana program function execution requests and therefore the number of accounts that can be passed into the ovr-program call.&#x20;

Discussed here is a proposed solution to allow for the distribution of AOVR to many accounts atomically, without the need to pass in all said accounts into the program call. In essence, rather than attempting to distribute AOVR tokens to all stakeholders in an atomic way at the time of minting, an on-chain register of staking pools (a pool of stakeholder stakes) and staking pool accounts that hold info about individual stakes will be maintained. Updates to the register represent stakeholder balances, allowing values to be updated without exceeding data size of computation limits.

Note on array indexes: positions in an array (a list) of data are referenced by an index starting at 0, meaning the first, third and tenth items in a collection are found at index 0, 2, and 9 respectively.


---

# 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:

```
GET https://allovr.gitbook.io/docs/whitepaper/a-next-generation-decentralized-autonomous-art-network/appendix-1-proposed-allovr-staking-mechanism.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
