*/}
+
+ Deposited with success!
+
+
+ )}
- {contractCallIndex !== 0 &&
- contractCallIndex > writeContractOptions.length - 1 && (
+ {/* {txHash && (
- {/**/}
-
- Deposited with success!
+
+
+
+
+ Transaction completed
+
+
+
- )}
-
+ )} */}
+
+
);
}
diff --git a/src/components/Berachain/components/BerachainWidgetWip/BerachainWidgetWip.style.ts b/src/components/Berachain/components/BerachainWidgetWip/BerachainWidgetWip.style.ts
index 0ee4257cd..0581155d3 100644
--- a/src/components/Berachain/components/BerachainWidgetWip/BerachainWidgetWip.style.ts
+++ b/src/components/Berachain/components/BerachainWidgetWip/BerachainWidgetWip.style.ts
@@ -39,6 +39,19 @@ export const BerachainWidgetSelection = styled(Box)(({ theme }) => ({
gap: '8px',
}));
+export const BerachainDepositInputBackground = styled(Box)(({ theme }) => ({
+ display: 'flex',
+ color: theme.palette.text.primary,
+ justifyContent: 'space-between',
+ flexDirection: 'column',
+ borderRadius: '16px',
+ backgroundColor: '#1E1D1C',
+ padding: theme.spacing(2),
+ marginTop: theme.spacing(2),
+ border: `1px solid ${alpha(theme.palette.white.main, 0.08)}`,
+ gap: '8px',
+}));
+
export const BerachainDetailsDropdown = styled(Box)(({ theme }) => ({
display: 'flex',
color: theme.palette.text.primary,
diff --git a/src/components/Menus/MainMenu/useMainMenuContent.tsx b/src/components/Menus/MainMenu/useMainMenuContent.tsx
index 29e742b48..8f8387598 100644
--- a/src/components/Menus/MainMenu/useMainMenuContent.tsx
+++ b/src/components/Menus/MainMenu/useMainMenuContent.tsx
@@ -8,6 +8,7 @@ import {
} from '@/const/trackingKeys';
import {
DISCORD_URL,
+ JUMPER_BOYCO_PATH,
JUMPER_LEARN_PATH,
JUMPER_LOYALTY_PATH,
JUMPER_SCAN_PATH,
@@ -21,7 +22,7 @@ import { getContrastAlphaColor } from '@/utils/colors';
import AccountCircleIcon from '@mui/icons-material/AccountCircle';
import DeveloperModeIcon from '@mui/icons-material/DeveloperMode';
import LanguageIcon from '@mui/icons-material/Language';
-import LocalLaundryServiceIcon from '@mui/icons-material/LocalLaundryService';
+import PetsIcon from '@mui/icons-material/Pets';
import SchoolIcon from '@mui/icons-material/School';
import SearchOutlinedIcon from '@mui/icons-material/SearchOutlined';
import XIcon from '@mui/icons-material/X';
@@ -144,6 +145,22 @@ export const useMainMenuContent = () => {
});
},
},
+ {
+ label: 'Boyco Launch',
+ prefixIcon: ,
+ showMoreIcon: false,
+ link: { url: JUMPER_BOYCO_PATH },
+ onClick: () => {
+ trackEvent({
+ category: TrackingCategory.Menu,
+ label: 'click-jumper-pass-berachain',
+ action: TrackingAction.ClickJumperCampaignLink,
+ data: { [TrackingEventParameter.Menu]: 'berachain' },
+ });
+ closeAllMenus();
+ router.push(JUMPER_BOYCO_PATH);
+ },
+ },
{
label: t('navbar.navbarMenu.profile'),
prefixIcon: ,
diff --git a/src/const/trackingKeys.ts b/src/const/trackingKeys.ts
index 0df66a574..a1a0fcf04 100644
--- a/src/const/trackingKeys.ts
+++ b/src/const/trackingKeys.ts
@@ -52,6 +52,7 @@ export enum TrackingAction {
ClickJumperLearnLink = 'action_click_jumper_learn_link',
ClickJumperProfileLink = 'action_click_jumper_profile_link',
ClickJumperScanLink = 'action_click_jumper-scan_link',
+ ClickJumperCampaignLink = 'action_click_jumper-campaign_link',
// Blog
SeeAllPosts = 'action_see_all_posts',
diff --git a/src/const/urls.ts b/src/const/urls.ts
index 580d1860a..d66b37b48 100644
--- a/src/const/urls.ts
+++ b/src/const/urls.ts
@@ -19,6 +19,7 @@ export const JUMPER_WALLET_PATH = '/wallet';
export const JUMPER_FEST_PATH = '/superfest';
export const JUMPER_MEMECOIN_PATH = '/memecoins';
export const JUMPER_QUESTS_PATH = '/quests';
+export const JUMPER_BOYCO_PATH = '/berachain';
export const GALXE_ENDPOINT = 'https://graphigo.prd.galaxy.eco/query';