diff --git a/public/img/img-point-plus-3.png b/public/img/img-point-plus-3.png new file mode 100644 index 00000000..c2cf61ee Binary files /dev/null and b/public/img/img-point-plus-3.png differ diff --git a/src/components/DashboardS2/DailyRoulette/DailyDrawModal.tsx b/src/components/DashboardS2/DailyRoulette/DailyDrawModal.tsx index 761ddc44..87ff8c1c 100644 --- a/src/components/DashboardS2/DailyRoulette/DailyDrawModal.tsx +++ b/src/components/DashboardS2/DailyRoulette/DailyDrawModal.tsx @@ -34,18 +34,19 @@ export const PrizeItems = [ points: 1, tooltip: "Equivalent to depositing 0.1 ETH into Nova for ~16 hours", }, + { + name: "Nova +3 Booster", + img: "/img/img-point-plus-3.png", + points: 3, + tooltip: "Equivalent to depositing 0.1 ETH into Nova for ~48 hours", + }, { name: "Nova +10 Booster", img: "/img/img-point-plus-10.png", points: 10, - tooltip: "Equivalent to depositing 1 ETH into Nova for ~16 hours", - }, - { - name: "Nova +50 Booster", - img: "/img/img-point-plus-50.png", - points: 50, - tooltip: "Equivalent to depositing 1 ETH into Nova for ~80 hours", + tooltip: "Equivalent to depositing 0.1 ETH into Nova for ~160 hours", }, + { name: "Binary Code Metrix Cube", img: "/img/img-trademark-4.png" }, { name: "Chess Knight", img: "/img/img-trademark-3.png" }, { name: "Magnifying Glass", img: "/img/img-trademark-2.png" }, @@ -58,8 +59,8 @@ const PRIZE_MAP: Record = { 3: 4, 4: 3, 6: 0, - 8: 1, - 9: 2, + 11: 1, + 8: 2, }; const DailyDrawModal: React.FC = (props: IProps) => { const { address, chainId } = useAccount();