From b69828faa6d3c7f02a5b0af3a0752c5ea577a939 Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Thu, 21 Sep 2023 08:04:20 +0200 Subject: [PATCH] Update fet.ts --- src/tokens/fet.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tokens/fet.ts b/src/tokens/fet.ts index 02281c1c..595123bd 100644 --- a/src/tokens/fet.ts +++ b/src/tokens/fet.ts @@ -5,7 +5,7 @@ const FET = "815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25a4672616374696f6e2045737461746520546f6b656e"; const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => { - const total = 200e16; + const total = 200e6; const blockFrost = getBlockFrostInstance(options); const treasuryRaw = await getAmountInAddresses(blockFrost, FET, [ "stake1uyyxjvthz4udwdrzr9pkkudpylasg99ufdzu7gpdfckxf2s5peell", @@ -19,7 +19,7 @@ const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => { const treasury = Number(treasuryRaw); return { circulating: (total - treasury).toString() / 1e10, - total: total.toString() / 1e10, + total: total.toString(), }; };