Skip to content

Commit

Permalink
chore: change adoption milestones (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
ice-orion authored Feb 8, 2024
1 parent d4e3e4c commit 7884d55
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const LevelRow = React.memo(
<Text style={styles.valueText}>
{formatNumberString(item.baseMiningRate, {
minimumFractionDigits: 0,
maximumFractionDigits: 3,
maximumFractionDigits: 6,
})}
</Text>
<View style={styles.leftIconContainer}>
Expand Down
18 changes: 17 additions & 1 deletion src/store/modules/Stats/sagas/getAdoption.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
];
Expand Down

0 comments on commit 7884d55

Please sign in to comment.