diff --git a/src/screens/HomeFlow/Home/components/Overview/components/AdoptionCard/components/LevelRow.tsx b/src/screens/HomeFlow/Home/components/Overview/components/AdoptionCard/components/LevelRow.tsx index b164f726c..eb5334992 100644 --- a/src/screens/HomeFlow/Home/components/Overview/components/AdoptionCard/components/LevelRow.tsx +++ b/src/screens/HomeFlow/Home/components/Overview/components/AdoptionCard/components/LevelRow.tsx @@ -70,7 +70,7 @@ export const LevelRow = React.memo( {formatNumberString(item.baseMiningRate, { minimumFractionDigits: 0, - maximumFractionDigits: 3, + maximumFractionDigits: 6, })} diff --git a/src/store/modules/Stats/sagas/getAdoption.ts b/src/store/modules/Stats/sagas/getAdoption.ts index e180fa187..03613abd2 100644 --- a/src/store/modules/Stats/sagas/getAdoption.ts +++ b/src/store/modules/Stats/sagas/getAdoption.ts @@ -20,10 +20,26 @@ const MILESTONES_BY_DATE = [ }, { baseMiningRate: '0.5', - achievementDate: '2024-06-01', + achievementDate: '2024-04-01', }, { baseMiningRate: '0.25', + achievementDate: '2024-05-01', + }, + { + baseMiningRate: '0.125', + achievementDate: '2024-06-01', + }, + { + baseMiningRate: '0.0625', + achievementDate: '2024-07-01', + }, + { + baseMiningRate: '0.03125', + achievementDate: '2024-08-01', + }, + { + baseMiningRate: '0.015625', achievementDate: '2024-09-01', }, ];