# Points Program

### Overview

The Points Program rewards participants based on **uptime** and **jobs** completed during defined **seasons**. Each season consists of multiple **periods**, and each period has a **pool** of rewards that are distributed weekly among participants according to their performance metrics.

### Key Concepts

#### 1. **Seasons & Periods**

* A **season** is a predefined duration divided into **periods**.
* Each period has a reward pool that will be distributed among participants.
* Metrics collected during each period determine the share of the pool that participants receive.

#### Seasons

{% hint style="warning" %}
Starting from **season 3** we will be verifying proof of availability by assigning tasks randomly to all nodes.
{% endhint %}

**Season 1 (Feb 14, 2025 – Mar 14, 2025) 150k**

* Period 1: Feb 14 – Feb 20, Pool: 10,000
* Period 2: Feb 21 – Feb 27, Pool: 25,000
* Period 3: Feb 28 – Mar 6, Pool: 40,000
* Period 4: Mar 7 – Mar 13, Pool: 75,000

**Season 2 (Mar 14, 2025 – Apr 11, 2025) 300k**

* Period 1: Mar 14– Mar 20, Pool: 20,000
* Period 2: Mar 21 – Mar 27, Pool: 50,000
* Period 3: Mar 28 – Apr 3, Pool: 80,000
* Period 4: Apr 4 – Apr 10, Pool: 150,000

**Season 3 (April 11, 2025 - May 9 , 2025) 300k**

* Period 1: April 11– April 17, Pool: 20,000
* Period 2: April 18 – April 24, Pool: 50,000
* Period 3: April 25 – May 1, Pool: 80,000
* Period 4: May 2 – May 8, Pool: 150,000

**Season 4 (May 9, 2025 - June 5, 2025) 300k**

* Period 1: May 9– May 14, Pool: 20,000
* Period 2: May 15 – May 21, Pool: 50,000
* Period 3: May 22 – May 28, Pool: 80,000
* Period 4: May 29 – June 4, Pool: 150,000

**Season 5  (June 5, 2025 - July 1, 2025) 300k**

* Period 1: June 5– June 11, Pool: 20,000
* Period 2: June 12 – June 18, Pool: 50,000
* Period 3: June 19 – June 25, Pool: 80,000
* Period 4: June 26 – July 1, Pool: 150,000

**Season 6  (July 2, 2025 - July 29, 2025) 300k**

* Period 1: July 2– July 8, Pool: 20,000
* Period 2: July 9 – July 15, Pool: 50,000
* Period 3: July 16 – July 22, Pool: 80,000
* Period 4: July 23 – July 29, Pool: 150,000

#### 2. **Metrics & Weights**

Participants are evaluated based on two metrics:

* **Uptime**: 70% weight
* **Jobs Completed**: 30% weight

Your reward for each period is calculated as follows:

$$
\text{Reward}*i = P \times \frac{(U\_i \times W\_u) + (J\_i \times W\_j)}{\sum*{k=1}^{N} \left( U\_k \times W\_u + J\_k \times W\_j \right)}
$$

Where:

* P = Pool reward for the week
* Ui​ = Uptime for participant i
* Ji​ = Jobs completed by participant i
* Wu​ = Weight for uptime
* Wj​ = Weight for jobs
* N = Total number of participants

***

### Referral Program

The referral program allows participants to boost their final season score through multipliers.

#### Referral Multipliers:

* Successfully refer someone: **1.1x multiplier**
* Refer 50+ active participants: **1.5x multiplier**
* Refer 100+ active participants: **2x multiplier**

#### First 100 Nodes Bonus

The first 100 nodes that sign up receive a **1.2x multiplier** on their rewards.

#### Applying Multipliers

At the end of all seasons, your final score will be adjusted based on your referral multipliers.

* Example: If you successfully referred more than 50 participants and were one of the first 100 nodes, your final multiplier would be **1.5x** (or **1.2x if no additional referrals**).


---

# 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://dev-docs.tasknet.co/node-operators/points-program.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.
