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

Develop add info about past epoch #2673

Merged
merged 5 commits into from
Jul 9, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -1877,7 +1877,7 @@ const RecapModal = ({
<motion.div variants={heroItemVariants}>
<Text size="sm">
<strong style={{ color: "white" }}>
Congratulations for completing Fluidity&apos;s Second
Congratulations for completing Fluidity&apos;s Third
Airdrop Wave!
</strong>{" "}
All of these loot bottles you have earned are safely secured
Expand Down Expand Up @@ -1962,7 +1962,7 @@ const RecapModal = ({
}}
>
<Text size="xl">
Fluidity&apos;s second Airdrop Wave has come to an end. Here are
Fluidity&apos;s third Airdrop Wave has come to an end. Here are
some <strong style={{ color: "white" }}>Global Stats</strong>{" "}
for the Wave.
</Text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,11 @@ const SAFE_DEFAULT_REFERRAL_LOOTBOTTLES: ReferralBottlesCountLoaderData = {
};

const GLOBAL_AIRDROP_BOTTLE_TIERS = {
[Rarity.Common]: 39000000,
[Rarity.Uncommon]: 7200000,
[Rarity.Rare]: 500000,
[Rarity.UltraRare]: 6400,
[Rarity.Legendary]: 0,
[Rarity.Common]: 62000000,
[Rarity.Uncommon]: 6600000,
[Rarity.Rare]: 3300000,
[Rarity.UltraRare]: 658000,
[Rarity.Legendary]: 58,
};

const Airdrop = () => {
Expand Down Expand Up @@ -536,7 +536,7 @@ const Airdrop = () => {
groupId="airdrop"
isSelected={currentModal === "recap" || currentModal === "claim"}
>
Airdrop Recap
Epoch 3 Recap
</TabButton>
<TabButton
size="small"
Expand All @@ -553,6 +553,7 @@ const Airdrop = () => {
onClick={() => setCurrentModal("tutorial")}
groupId="airdrop"
isSelected={isMobile && currentModal === "tutorial"}
disabled
>
Airdrop Tutorial
</TabButton>
Expand Down Expand Up @@ -583,6 +584,7 @@ const Airdrop = () => {
onClick={() => setCurrentModal("referrals")}
groupId="airdrop"
isSelected={isMobile && currentModal === "referrals"}
disabled
>
Referrals
</TabButton>
Expand Down Expand Up @@ -706,8 +708,8 @@ const Airdrop = () => {
)}
{(currentModal === "recap" || currentModal === "claim") && (
<RecapModal
totalVolume={2000000000}
bottlesLooted={47000000}
totalVolume={2200000000}
bottlesLooted={72000000}
bottles={GLOBAL_AIRDROP_BOTTLE_TIERS}
userRecap={{
bottles: SAFE_DEFAULT_AIRDROP.bottleTiers,
Expand Down Expand Up @@ -893,8 +895,8 @@ const Airdrop = () => {
<Header />
{currentModal === "recap" || currentModal === "claim" ? (
<RecapModal
totalVolume={2000000000}
bottlesLooted={47000000}
totalVolume={2200000000}
bottlesLooted={72000000}
bottles={GLOBAL_AIRDROP_BOTTLE_TIERS}
userRecap={{
bottles: SAFE_DEFAULT_AIRDROP.bottleTiers,
Expand Down
1 change: 0 additions & 1 deletion web/app.fluidity.money/contexts/SolanaProvider.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React, { useMemo } from "react";
import dynamic from "next/dynamic";
import {
ConnectionProvider,
WalletProvider,
Expand Down
Loading