Skip to content

Commit

Permalink
apr for graph needs to be muled by 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
t0rbik committed Dec 2, 2024
1 parent a11bca8 commit c2fe24a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/vaults/row/VaultInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export const VaultInfo = ({ vault }: VaultInfoProps) => {
name: values[1],
timestamp: parseInt(values[0]),
formattedDate: dayjs.unix(parseInt(values[0])).format("MMM D"),
apr: +values[2] * 100,
apr: +values[2] * 100 * 0.9, // 10% fee for Alchemist
};
});
return parsedData;
Expand Down

0 comments on commit c2fe24a

Please sign in to comment.