> For the complete documentation index, see [llms.txt](https://help.tenet.farm/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.tenet.farm/tens-token-model/rewards-locked.md).

# Rewards locked

TEN tokens are locked in for a period of time after they are mined. 40,000 blocks will be locked on Ethereum and 200,000 blocks will be locked on Binance Smart Chain.

TEN per harvest = (Block0 - LockBlock) / Block0 \* Reward0

If the result of the calculation is < 0, it is treated as 0;

If no mining reward harvested for a whole lock period, the full amount of the receivable mining reward may be withdrawn.

\* Block 0: number of blocks with receivable rewards      &#x20;

\* Reward0: Receivable mining rewards

\* LockBlock: locked blocks (40,000 blocks locked on ETH and 200,000 blocks locked on BSC)

**Example (on Ethereum):**

User A’s mining block is from #10000000 to #10001000 and A mined 100 TEN.

Then A harvests his / her rewards:

Block0 = #10001000 - #10000000 = 1000

Reward0 = 100

TEN = (1000 - 40000) / 1000 \* 100 < 0; Receivable TEN = 0.

Then A continues mining from #10001000 to #10053000, and mined 10000 TEN.

&#x20;Then A harvests his / her rewards:

Block0 = 1000 + (#10053000 - #10001000) = 52000

Reward0 = 100 + 10000 = 10100

Then TEN = (52000 - 40000) / 52000 \* 10100 = 2330; Receivable TEN = 2330.

After receiving rewards, user A gets rewards from 12000 (=52000-40000) blocks, then

Block0 = 52000 - 12000 = 40000

Reward0 = 100 + 10000 = 10100 \* 40000 / 52000 = 7770


---

# 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://help.tenet.farm/tens-token-model/rewards-locked.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.
