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
6 changes: 3 additions & 3 deletions src/hooks/rewards/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ export const LIQUIDATION_REBATES_DETAILS = {

export const RWA_COMPETITION_WEEKS = [
{ week: 1, name: 'Gold Rush', startDate: '2026-04-06T00:00:00.000Z', endDate: '2026-04-13T00:00:00.000Z' },
{ week: 2, name: 'Crude Awakening', startDate: '2026-04-13T00:00:00.000Z', endDate: '2026-04-20T00:00:00.000Z' },
{ week: 3, name: 'Silver Rush', startDate: '2026-04-20T00:00:00.000Z', endDate: '2026-04-27T00:00:00.000Z' },
{ week: 2, name: 'Crude Awakening', startDate: '2026-04-13T00:00:00.000Z', endDate: '2026-04-27T00:00:00.000Z' },
{ week: 3, name: 'Silver Rush', startDate: '2026-04-27T00:00:00.000Z', endDate: '2026-05-04T00:00:00.000Z' },
];

const RWA_REWARDS = [
Expand All @@ -161,7 +161,7 @@ export const RWA_COMPETITION_DETAILS = {
topPrizeAmount: '$3,000',
leaderboardSize: 10,
startTime: '2026-04-06T00:00:00.000Z',
endTime: '2026-04-27T00:00:00.000Z',
endTime: '2026-05-04T00:00:00.000Z',
};

export function getActiveRwaWeek() {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/token/RewardsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const RewardsPage = () => {
const daysRemaining = Math.ceil(msRemaining / timeUnits.day);
const endingSoon = !hasEnded && daysRemaining <= 3;

const weekLabel = activeWeek ? `Week ${activeWeek.week}: ${activeWeek.name}` : null;
const weekLabel = activeWeek ? `Sprint ${activeWeek.week}: ${activeWeek.name}` : null;

const tabs = [
{
Expand Down
8 changes: 4 additions & 4 deletions src/pages/token/RwaCompetitionPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,21 +68,21 @@ export const RwaCompetitionPanel = () => {
</div>

<span tw="text-color-text-0">
Compete for {RWA_COMPETITION_DETAILS.rewardAmount} in prizes across 3 weekly RWA
trading sprints. Top 10 traders each week win.
Compete for a {RWA_COMPETITION_DETAILS.rewardAmount} prize pool in every RWA
trading sprint, awarded to the Top 10 traders.
</span>

<div>
<p tw="font-semibold">Rules</p>
<ul tw="list-outside list-disc pl-1.5 text-color-text-0">
<li>Trade the designated RWA market each week using Bonk</li>
<li>Trade the designated RWA market using Bonk</li>
<li>PnL is calculated from fully closed positions only</li>
<li>Leaderboard updates multiple times daily</li>
</ul>
</div>

<span tw="text-small text-color-text-0">
Starting on April 14th, winners of each week can claim rewards and check
2 days after each RWA trading sprint, users can claim rewards and check
eligibility{' '}
<Link href="https://www.dydx.xyz/bonk-trading-competition-claims" isInline>
here
Expand Down
Loading