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

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsNoah21 authored Dec 10, 2023
1 parent 7cef3fc commit 12679ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nebula.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => {
];

const treasury =
Number(await getAmountInAddresses(blockFrost, NEBULA, treasuryRaw)) / 1e6;
Number(await getAmountInAddresses(blockFrost, NEBULA, treasuryRaw)) / 1e8;
const burn =
Number(await getAmountInAddresses(blockFrost, NEBULA, burnRaw)) / 1e6;
Number(await getAmountInAddresses(blockFrost, NEBULA, burnRaw)) / 1e8;

return {
circulating: (total - treasury - burn).toString(),
Expand Down

0 comments on commit 12679ce

Please sign in to comment.