Skip to content

Commit c4f6315

Browse files
authored
Merge pull request #55 from dydxprotocol/fix/extend-wti
Extend wti trading
2 parents c565779 + 4dc28be commit c4f6315

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/hooks/rewards/util.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ export const LIQUIDATION_REBATES_DETAILS = {
142142

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

149149
const RWA_REWARDS = [
@@ -161,7 +161,7 @@ export const RWA_COMPETITION_DETAILS = {
161161
topPrizeAmount: '$3,000',
162162
leaderboardSize: 10,
163163
startTime: '2026-04-06T00:00:00.000Z',
164-
endTime: '2026-04-27T00:00:00.000Z',
164+
endTime: '2026-05-04T00:00:00.000Z',
165165
};
166166

167167
export function getActiveRwaWeek() {

src/pages/token/RewardsPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ const RewardsPage = () => {
9393
const daysRemaining = Math.ceil(msRemaining / timeUnits.day);
9494
const endingSoon = !hasEnded && daysRemaining <= 3;
9595

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

9898
const tabs = [
9999
{

src/pages/token/RwaCompetitionPanel.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,21 +68,21 @@ export const RwaCompetitionPanel = () => {
6868
</div>
6969

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

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

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

0 commit comments

Comments
 (0)