Skip to content

Commit

Permalink
blockbot added
Browse files Browse the repository at this point in the history
  • Loading branch information
unixvb committed Nov 29, 2024
1 parent a37d6c5 commit 41fa2a0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ const LinksRecord: Record<TaskTypeEnum, string> = {
[TaskTypeEnum.notPixel_Bot]:
'https://t.me/notpixel/app?startapp=f151872929_s574604',
[TaskTypeEnum.Terminal_Bot]:
'https://t.me/terminalgame_bot/terminalgame?startapp=V8XW4H36&startApp=V8XW4H36'
'https://t.me/terminalgame_bot/terminalgame?startapp=V8XW4H36&startApp=V8XW4H36',
[TaskTypeEnum.BlockLabs_Bot]:
'https://t.me/blocklab_bot?start=MTczMjg5MDg0MTI5MQ'
};

const RewardsRecord: Record<TaskTypeEnum, string> = {
Expand All @@ -68,7 +70,8 @@ const RewardsRecord: Record<TaskTypeEnum, string> = {
[TaskTypeEnum.TonStation_Bot]: '1,000',
[TaskTypeEnum.Clayton_Bot]: '1,000',
[TaskTypeEnum.notPixel_Bot]: '1,000',
[TaskTypeEnum.Terminal_Bot]: '1,000'
[TaskTypeEnum.Terminal_Bot]: '1,000',
[TaskTypeEnum.BlockLabs_Bot]: '1,000'
};

interface Props {
Expand Down
7 changes: 7 additions & 0 deletions src/components/points-modal/social-tasks/social-tasks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {EmptyFn} from '@rnw-community/shared';
import {FC} from 'react';

import appsCenterImage from './assets/apps-center.jpg';
import blockLabsImage from './assets/blockLabs.jpeg';
import claytonImage from './assets/clayton.jpeg';
import jvaultImage from './assets/jvault.jpeg';
import notPixelImage from './assets/notPixel.jpeg';
Expand Down Expand Up @@ -75,6 +76,12 @@ export const SocialTasks: FC<Props> = ({onSwap}) => {
<Divider withArrow={true} className={styles.divider} />

<p className={styles.title}>New Year Special ✨</p>
<PartnerTaskItem
isTelegram={true}
imageSrc={blockLabsImage}
title="Open Block Labs"
taskType={TaskTypeEnum.BlockLabs_Bot}
/>
<PartnerTaskItem
isTelegram={true}
imageSrc={tonStationImage}
Expand Down
3 changes: 2 additions & 1 deletion src/enums/task-type.enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,6 @@ export enum TaskTypeEnum {
TonStation_Bot = 'tonStationBot',
Clayton_Bot = 'claytonBot',
notPixel_Bot = 'notPixelBot',
Terminal_Bot = 'terminalBot'
Terminal_Bot = 'terminalBot',
BlockLabs_Bot = 'blockLabsBot'
}

0 comments on commit 41fa2a0

Please sign in to comment.