Skip to content

Commit

Permalink
Have info on the distribution for epoch 3 (#2671)
Browse files Browse the repository at this point in the history
* Have info on the distribution for epoch 3

* Disable some of the buttons

* Pull dynamic import from SolanaProvider
  • Loading branch information
af-afk authored Jul 9, 2024
1 parent 86c69c2 commit e199c40
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
Original file line number Diff line number Diff line change
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

0 comments on commit e199c40

Please sign in to comment.