Skip to content

Commit

Permalink
Update fet.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
FractionEstate authored Sep 21, 2023
1 parent a8f3f20 commit 72e4393
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tokens/fet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => {
]);
const treasury = Number(treasuryRaw);
return {
circulating: (total - treasury).toString(),
circulating: (total - treasury).toString() / 1e10,
total: total.toString(),
};
};
Expand Down

0 comments on commit 72e4393

Please sign in to comment.