Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Commit

Permalink
Fixed decimals error mom.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
noroxi7 committed Sep 11, 2024
1 parent 90d56a6 commit abfba02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tokens/mom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => {
const treasury = Number(treasuryRaw);
const burn = Number(burnRaw);
return {
circulating: (total - treasury / 1e6 - burn / 1e6).toString(),
total: (total - burn / 1e6).toString(),
circulating: (total - treasury / 1e5 - burn / 1e5).toString(),
total: (total - burn / 1e5).toString(),
};
};

Expand Down

0 comments on commit abfba02

Please sign in to comment.