Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/cli/commands/tokens/request.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This command is only available during the Testnet. Be mindful of [Testnet limita
```
./spctl tokens request
[--tee]
[--matic]
[--bnb]
[--config <path>]
[--help | -h]
```
Expand All @@ -24,7 +24,7 @@ This command is only available during the Testnet. Be mindful of [Testnet limita
| **Name** | **Description** |
| :- | :- |
| `--tee` | Request for SPPI tokens. |
| `--matic` | Request for BNB tokens. |
| `--bnb` | Request for BNB tokens. |
| `--config <path>` | Path to the SPCTL configuration file. The default is `./config.json`. |
| `--help`, `-h` | Help for the command. |

Expand Down
12 changes: 3 additions & 9 deletions docs/data-for-ai/Overview/points.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
---
id: "points"
title: "Points and Super Stakes"
title: "Points and the Leaderboard"
slug: "/overview/points"
sidebar_position: 5
---

## Points

Your points are the result of your activity during the campaign and determine your rank on the leaderboard. The more valid data links you submit and the more active your referees are, the more points you will have.

→ Only the top 1,000 on the Leaderboard will qualify for USDT and Super Stakes rewards.
→ Only the top 1,000 on the Leaderboard will qualify for [USDT and Super Stakes rewards](/data-for-ai/rules/rewards).

Your points may come from the following:

Expand All @@ -20,8 +18,4 @@ Your points may come from the following:
| Strike Bonus | **280** (for exactly 30 valid data links in a day) |
| Referral Submission | **35\*** points for each valid data link |

**\*** Points for submitting a link, directly and through the referral program, increase by 4% daily during the campaign.

## Super Stakes

Super Stakes are a separate, long-term reward. The amount of Super Stakes you get depends on your rank on the Leaderboard. At the token generation event, Super Stakes will be converted into Super Tokens, the native token of the Super Protocol ecosystem.
**\*** Points for submitting a link, directly and through the referral program, increase by 4% daily during the campaign.
58 changes: 57 additions & 1 deletion docs/data-for-ai/Rules/rewards.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,60 @@ The relevant dates and conditions for claiming rewards:

All rewards will be claimable on the **opBNB network**.

The top 50 participants might be subject to KYC checks to verify identity and prevent bot activity.
The top 50 participants might be subject to KYC checks to verify identity and prevent bot activity.

## Leaderboard

To check winners, participants, referrals, rewards, and more, [read the campaign’s smart contract](https://opbnb.bscscan.com/address/0x8c77ef6ed2ee514d1754fbfc2710d70e9d6ba871#readContract) on the opBNB network.

### Check a participant

To get the full information about a participant, use the method [getParticipantInfo](https://opbnb.bscscan.com/address/0x8c77ef6ed2ee514d1754fbfc2710d70e9d6ba871#readContract#F12). Enter a wallet address and press **Query**.

<img src={require('../images/getParticipantInfo.png').default} width="auto" height="auto" border="1"/>
<br/>
<br/>

Example result:

```text
0,0,true,false,0x8da2c62C23aEBeb1Aa8b5eE96d341d26a2edec6eB,68,2640,67738,390,0,237,152,0xbF4aC1b6efd5C21e5Ce93f34c8F43C8a9bCACA3F3,813,97280,10000000000000000000,500
```

Fields in the example in order of appearance:

| **Example value** | **Comment** |
| :- | :- |
| `0` | Submission attempts today. Always `0` because the campaign has ended. |
| `0` | Number of links validated today. Always `0` because the campaign has ended. |
| `true` | Flag indicating if the address is registered as a campaign participant. |
| `false` | Flag indicating if the address has claimed the reward. |
| `0x8da2c62C23aEBeb1Aa8b5eE96d341d26a2edec6eB` | The referrer’s address. |
| `68` | Number of referees. |
| `2640` | Points the participant earned for their referrer. |
| `67738` | Points the participant earned from their referees. |
| `390` | Total number of links submitted. |
| `0` | Total number of duplicate links submitted. |
| `237` | Total number of valid links submitted. |
| `152` | Total number of invalid links submitted. |
| `0xbF4aC1b6efd5C21e5Ce93f34c8F43C8a9bCACA3F3` | The participant’s address. |
| `813` | Current rank in the leaderboard. |
| `97280` | Total points earned. |
| `10000000000000000000` | USDT reward, in denominations. 10<sup>18</sup> = 1 USDT. |
| `500` | Super Stakes reward. |

### Check other information

To see participants around you, use the method [getParticipantsAroundRank](https://opbnb.bscscan.com/address/0x8c77ef6ed2ee514d1754fbfc2710d70e9d6ba871#readContract#F16). Enter your rank, the desired range, and press **Query**.

<img src={require('../images/getParticipantsAroundRank.png').default} width="auto" height="auto" border="1"/>
<br/>
<br/>

To see all winners, use the method [getTopParticipantsInfo](https://opbnb.bscscan.com/address/0x8c77ef6ed2ee514d1754fbfc2710d70e9d6ba871#readContract#F21). Enter 1000 and press **Query**.

<img src={require('../images/getTopParticipantsInfo.png').default} width="auto" height="auto" border="1"/>
<br/>
<br/>

Use other smart contract methods to get more information about the campaign results.
Binary file added docs/data-for-ai/images/getParticipantInfo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading