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