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 72e4393 commit 71d614c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tokens/fet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const FET =
"815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25a4672616374696f6e2045737461746520546f6b656e";

const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => {
const total = 200e6;
const total = 200e16;
const blockFrost = getBlockFrostInstance(options);
const treasuryRaw = await getAmountInAddresses(blockFrost, FET, [
"stake1uyyxjvthz4udwdrzr9pkkudpylasg99ufdzu7gpdfckxf2s5peell",
Expand All @@ -19,7 +19,7 @@ const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => {
const treasury = Number(treasuryRaw);
return {
circulating: (total - treasury).toString() / 1e10,
total: total.toString(),
total: total.toString() / 1e10,
};
};

Expand Down

0 comments on commit 71d614c

Please sign in to comment.