Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Leaderboard] Added top 200 points #5816

Merged
merged 2 commits into from
Aug 31, 2020
Merged
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
6 changes: 4 additions & 2 deletions frontend/leaderboard/src/Challenges.re
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ let bonusBlocksChallenge = metricsMap => {
(2, 3000), // 3rd place: 3000 pts
(11, 2000), // Top 10: 2000 pts.
(26, 1500), // Top 25: 1500 pts
(101, 1000) // Top 100: 1000 pts
(101, 1000), // Top 100: 1000 pts
(201, 500) // Top 200: 500 pts
|],
metricsMap,
(metricRecord: Types.Metrics.t) => metricRecord.blocksCreated,
Expand Down Expand Up @@ -94,7 +95,8 @@ let bonusSendCodaChallenge = metricsMap => {
(2, 3000), // 3rd place: 3000 pts
(11, 2000), // Top 10: 2000 pts.
(26, 1500), // Top 25: 1500 pts
(101, 1000) // Top 100: 1000 pts
(101, 1000), // Top 100: 1000 pts
(201, 1000) // Top 200: 500 pts
|],
metricsMap,
(metricRecord: Types.Metrics.t) => metricRecord.transactionSent,
Expand Down