diff --git a/docs/cli/commands/tokens/request.md b/docs/cli/commands/tokens/request.md index aca53d74..7a6adce6 100644 --- a/docs/cli/commands/tokens/request.md +++ b/docs/cli/commands/tokens/request.md @@ -14,7 +14,7 @@ This command is only available during the Testnet. Be mindful of [Testnet limita ``` ./spctl tokens request [--tee] - [--matic] + [--bnb] [--config ] [--help | -h] ``` @@ -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 to the SPCTL configuration file. The default is `./config.json`. | | `--help`, `-h` | Help for the command. | diff --git a/docs/data-for-ai/Overview/points.md b/docs/data-for-ai/Overview/points.md index 1854e23f..c044f0b1 100644 --- a/docs/data-for-ai/Overview/points.md +++ b/docs/data-for-ai/Overview/points.md @@ -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: @@ -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. \ No newline at end of file +**\*** Points for submitting a link, directly and through the referral program, increase by 4% daily during the campaign. \ No newline at end of file diff --git a/docs/data-for-ai/Rules/rewards.md b/docs/data-for-ai/Rules/rewards.md index 21cbedc0..7864d0a6 100644 --- a/docs/data-for-ai/Rules/rewards.md +++ b/docs/data-for-ai/Rules/rewards.md @@ -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. \ No newline at end of file +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**. + + +
+
+ +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. 1018 = 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**. + + +
+
+ +To see all winners, use the method [getTopParticipantsInfo](https://opbnb.bscscan.com/address/0x8c77ef6ed2ee514d1754fbfc2710d70e9d6ba871#readContract#F21). Enter 1000 and press **Query**. + + +
+
+ +Use other smart contract methods to get more information about the campaign results. \ No newline at end of file diff --git a/docs/data-for-ai/images/getParticipantInfo.png b/docs/data-for-ai/images/getParticipantInfo.png new file mode 100644 index 00000000..c2aae587 Binary files /dev/null and b/docs/data-for-ai/images/getParticipantInfo.png differ diff --git a/docs/data-for-ai/images/getParticipantsAroundRank.png b/docs/data-for-ai/images/getParticipantsAroundRank.png new file mode 100644 index 00000000..c2e59a2e Binary files /dev/null and b/docs/data-for-ai/images/getParticipantsAroundRank.png differ diff --git a/docs/data-for-ai/images/getTopParticipantsInfo.png b/docs/data-for-ai/images/getTopParticipantsInfo.png new file mode 100644 index 00000000..153f526c Binary files /dev/null and b/docs/data-for-ai/images/getTopParticipantsInfo.png differ