From 12679cef2b10afa8123d5f6e500ce8629752dcd2 Mon Sep 17 00:00:00 2001 From: ItsNoah21 <134802850+ItsNoah21@users.noreply.github.com> Date: Sun, 10 Dec 2023 15:18:09 -0500 Subject: [PATCH] Add files via upload --- src/nebula.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nebula.ts b/src/nebula.ts index bf8bf74f..3b48918d 100644 --- a/src/nebula.ts +++ b/src/nebula.ts @@ -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(),