From f5daa4693861ddfeff32650286e90cfc0646fed7 Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 19:08:44 +0200 Subject: [PATCH 01/20] Add files via upload --- src/tokens/fet.ts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/tokens/fet.ts diff --git a/src/tokens/fet.ts b/src/tokens/fet.ts new file mode 100644 index 00000000..adfcc7b7 --- /dev/null +++ b/src/tokens/fet.ts @@ -0,0 +1,26 @@ +import { defaultFetcherOptions, SupplyFetcher } from "../types"; +import { getAmountInAddresses, getBlockFrostInstance } from "../utils"; + +const FET = + "815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25a"; + +const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => { + const blockFrost = getBlockFrostInstance(options); + const total = 2e8; + const treasuryRaw = await getAmountInAddresses(blockFrost, FET, [ + "stake1uyyxjvthz4udwdrzr9pkkudpylasg99ufdzu7gpdfckxf2s5peell", // DEX funds + "stake1ux94pdq42nwx0g24ea3myjcnd8tvl354ku4ygedtgm7sfgc2hugz9", // Reserve funds + "stake1uxerycuwj09h2n6wydjp4vk936la23p9dvn37ezlkmdl5ycq38hr4", // Development funds + "stake1uypwcfxvg7uyzkyeue8fglq6fx7uxmampr2ahylyy4rg38cvky2pr", // Fraction Estate funds + "stake1ux7pa94sgkzd0yawsu9e9ddj0vr07psyezksfek24m9wn2qtjf62u", // Marketing funds + "stake1u8qzt94vyvfvvs4qan02axtfwj2hz4dcqefpehara5rdh4q6h9xka", // Founder - Daniel Johnsen + "stake1uy74mhj5x3jdf8d9446xcwrw723pvqelksxwwxu5c6t799qcnww0q", // Charity funds + ]); + const treasury = Number(treasuryRaw); + return { + circulating: (total - treasury).toString(), + total: total.toString(), + }; +}; + +export default fetcher; \ No newline at end of file From 1cb1789316cb3c03b183d43a12454266063791b6 Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 19:13:19 +0200 Subject: [PATCH 02/20] Update index.ts add fet --- src/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index.ts b/src/index.ts index a7ce86fb..b65bc7d2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,4 @@ +import fetFetcher from "./tokens/fet"; import aadaFetcher from "./tokens/aada"; import agcFetcher from "./tokens/agc"; import agixFetcher from "./tokens/agix"; @@ -100,6 +101,8 @@ export const supplyFetchers: Record = { vyfiFetcher, a0028f350aaabe0545fdcb56b039bfb08e4bb4d8c4d7c3c7d481c235484f534b59: hoskyFetcher, + 815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25aa: + fetFetcher, dda5fdb1002f7389b33e036b6afee82a8189becb6cba852e8b79b4fb0014df1047454e53: gensFetcher, fbae99b8679369079a7f6f0da14a2cf1c2d6bfd3afdf3a96a64ab67a0014df1047454e5358: From ab270c34da2d33cf7345490b00492cb4c1bbae4e Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 19:20:52 +0200 Subject: [PATCH 03/20] Update index.ts --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index b65bc7d2..0bc22522 100644 --- a/src/index.ts +++ b/src/index.ts @@ -101,7 +101,7 @@ export const supplyFetchers: Record = { vyfiFetcher, a0028f350aaabe0545fdcb56b039bfb08e4bb4d8c4d7c3c7d481c235484f534b59: hoskyFetcher, - 815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25aa: + 815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25aa: fetFetcher, dda5fdb1002f7389b33e036b6afee82a8189becb6cba852e8b79b4fb0014df1047454e53: gensFetcher, From 0a6da6f1ec21e0e26ec8dd95cad1ddebb48910c8 Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 19:45:15 +0200 Subject: [PATCH 04/20] Update index.ts From 58ca88c22788c4a09030bee14fcc314f1884016a Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 19:49:06 +0200 Subject: [PATCH 05/20] Update index.ts --- src/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 0bc22522..79129dbd 100644 --- a/src/index.ts +++ b/src/index.ts @@ -101,8 +101,7 @@ export const supplyFetchers: Record = { vyfiFetcher, a0028f350aaabe0545fdcb56b039bfb08e4bb4d8c4d7c3c7d481c235484f534b59: hoskyFetcher, - 815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25aa: - fetFetcher, + 815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25aa: fetFetcher, dda5fdb1002f7389b33e036b6afee82a8189becb6cba852e8b79b4fb0014df1047454e53: gensFetcher, fbae99b8679369079a7f6f0da14a2cf1c2d6bfd3afdf3a96a64ab67a0014df1047454e5358: From bc84fb82a0dbb8b149bb26203955f9015d81d33f Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 20:03:59 +0200 Subject: [PATCH 06/20] Update index.ts --- src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 79129dbd..6464ce65 100644 --- a/src/index.ts +++ b/src/index.ts @@ -101,7 +101,8 @@ export const supplyFetchers: Record = { vyfiFetcher, a0028f350aaabe0545fdcb56b039bfb08e4bb4d8c4d7c3c7d481c235484f534b59: hoskyFetcher, - 815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25aa: fetFetcher, + "815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25aa": + fetFetcher, dda5fdb1002f7389b33e036b6afee82a8189becb6cba852e8b79b4fb0014df1047454e53: gensFetcher, fbae99b8679369079a7f6f0da14a2cf1c2d6bfd3afdf3a96a64ab67a0014df1047454e5358: From 81d3ae601041af3cbafad82be874a3563c1a58b5 Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 20:11:43 +0200 Subject: [PATCH 07/20] Update index.ts --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 6464ce65..0bc22522 100644 --- a/src/index.ts +++ b/src/index.ts @@ -101,7 +101,7 @@ export const supplyFetchers: Record = { vyfiFetcher, a0028f350aaabe0545fdcb56b039bfb08e4bb4d8c4d7c3c7d481c235484f534b59: hoskyFetcher, - "815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25aa": + 815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25aa: fetFetcher, dda5fdb1002f7389b33e036b6afee82a8189becb6cba852e8b79b4fb0014df1047454e53: gensFetcher, From 50c2fbdb157ef6123a669a6a10a0d15b12512089 Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 20:19:57 +0200 Subject: [PATCH 08/20] Update index.ts --- src/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 0bc22522..6e7e874b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -101,8 +101,7 @@ export const supplyFetchers: Record = { vyfiFetcher, a0028f350aaabe0545fdcb56b039bfb08e4bb4d8c4d7c3c7d481c235484f534b59: hoskyFetcher, - 815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25aa: - fetFetcher, + "815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25aa": fetFetcher, dda5fdb1002f7389b33e036b6afee82a8189becb6cba852e8b79b4fb0014df1047454e53: gensFetcher, fbae99b8679369079a7f6f0da14a2cf1c2d6bfd3afdf3a96a64ab67a0014df1047454e5358: From a14edd4d4c356292491acf72df48570277323280 Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 20:25:46 +0200 Subject: [PATCH 09/20] Update index.ts --- src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 6e7e874b..f0bc5348 100644 --- a/src/index.ts +++ b/src/index.ts @@ -101,7 +101,6 @@ export const supplyFetchers: Record = { vyfiFetcher, a0028f350aaabe0545fdcb56b039bfb08e4bb4d8c4d7c3c7d481c235484f534b59: hoskyFetcher, - "815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25aa": fetFetcher, dda5fdb1002f7389b33e036b6afee82a8189becb6cba852e8b79b4fb0014df1047454e53: gensFetcher, fbae99b8679369079a7f6f0da14a2cf1c2d6bfd3afdf3a96a64ab67a0014df1047454e5358: @@ -182,4 +181,6 @@ export const supplyFetchers: Record = { utilFetcher, a3931691f5c4e65d01c429e473d0dd24c51afdb6daf88e632a6c1e516f7263666178746f6b656e: factFetcher, + "815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25aa": + fetFetcher, }; From 4efb59d23f3dd91f68a5982453291a9f16dc88ae Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 20:27:04 +0200 Subject: [PATCH 10/20] Update index.ts --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index f0bc5348..d4da5027 100644 --- a/src/index.ts +++ b/src/index.ts @@ -181,6 +181,6 @@ export const supplyFetchers: Record = { utilFetcher, a3931691f5c4e65d01c429e473d0dd24c51afdb6daf88e632a6c1e516f7263666178746f6b656e: factFetcher, - "815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25aa": + "815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25aa": fetFetcher, }; From 531e443ff38580689e86bc444d106b1a1f5b48e7 Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 20:53:12 +0200 Subject: [PATCH 11/20] Update index.ts --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index d4da5027..e8512bdf 100644 --- a/src/index.ts +++ b/src/index.ts @@ -181,6 +181,6 @@ export const supplyFetchers: Record = { utilFetcher, a3931691f5c4e65d01c429e473d0dd24c51afdb6daf88e632a6c1e516f7263666178746f6b656e: factFetcher, - "815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25aa": + "815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25a": fetFetcher, }; From 432adca041d21bcd9c6d154ac16b31cc85f35ada Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 20:56:07 +0200 Subject: [PATCH 12/20] Update fet.ts --- src/tokens/fet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tokens/fet.ts b/src/tokens/fet.ts index adfcc7b7..ba0560ce 100644 --- a/src/tokens/fet.ts +++ b/src/tokens/fet.ts @@ -23,4 +23,4 @@ const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => { }; }; -export default fetcher; \ No newline at end of file +export default fetcher; From 90a2115a1d33c8e83fc6701be07a5ada755d057a Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 21:04:23 +0200 Subject: [PATCH 13/20] Update fet.ts --- src/tokens/fet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tokens/fet.ts b/src/tokens/fet.ts index ba0560ce..551f9c9a 100644 --- a/src/tokens/fet.ts +++ b/src/tokens/fet.ts @@ -6,7 +6,7 @@ const FET = const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => { const blockFrost = getBlockFrostInstance(options); - const total = 2e8; + const total = 200000000; const treasuryRaw = await getAmountInAddresses(blockFrost, FET, [ "stake1uyyxjvthz4udwdrzr9pkkudpylasg99ufdzu7gpdfckxf2s5peell", // DEX funds "stake1ux94pdq42nwx0g24ea3myjcnd8tvl354ku4ygedtgm7sfgc2hugz9", // Reserve funds From a8143148cbd7be6e6401bee882e9278b661f0751 Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 21:54:43 +0200 Subject: [PATCH 14/20] Update fet.ts --- src/tokens/fet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tokens/fet.ts b/src/tokens/fet.ts index 551f9c9a..c6cd1586 100644 --- a/src/tokens/fet.ts +++ b/src/tokens/fet.ts @@ -6,7 +6,7 @@ const FET = const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => { const blockFrost = getBlockFrostInstance(options); - const total = 200000000; + const total = 200_000_000; const treasuryRaw = await getAmountInAddresses(blockFrost, FET, [ "stake1uyyxjvthz4udwdrzr9pkkudpylasg99ufdzu7gpdfckxf2s5peell", // DEX funds "stake1ux94pdq42nwx0g24ea3myjcnd8tvl354ku4ygedtgm7sfgc2hugz9", // Reserve funds From 14bc2e04cb18bf8a2a0d98a6bf319fc873699088 Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 22:03:49 +0200 Subject: [PATCH 15/20] Update index.ts --- src/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index e8512bdf..69842284 100644 --- a/src/index.ts +++ b/src/index.ts @@ -181,6 +181,5 @@ export const supplyFetchers: Record = { utilFetcher, a3931691f5c4e65d01c429e473d0dd24c51afdb6daf88e632a6c1e516f7263666178746f6b656e: factFetcher, - "815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25a": - fetFetcher, + "815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25a": fetFetcher, }; From 34156b39f9934d4d12566eb904840f5cf5f16507 Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 22:09:40 +0200 Subject: [PATCH 16/20] Update fet.ts --- src/tokens/fet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tokens/fet.ts b/src/tokens/fet.ts index c6cd1586..ba0560ce 100644 --- a/src/tokens/fet.ts +++ b/src/tokens/fet.ts @@ -6,7 +6,7 @@ const FET = const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => { const blockFrost = getBlockFrostInstance(options); - const total = 200_000_000; + const total = 2e8; const treasuryRaw = await getAmountInAddresses(blockFrost, FET, [ "stake1uyyxjvthz4udwdrzr9pkkudpylasg99ufdzu7gpdfckxf2s5peell", // DEX funds "stake1ux94pdq42nwx0g24ea3myjcnd8tvl354ku4ygedtgm7sfgc2hugz9", // Reserve funds From d62754577703d3af96eabeaee98e8090b7b3dc4c Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 22:13:58 +0200 Subject: [PATCH 17/20] Update fet.ts --- src/tokens/fet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tokens/fet.ts b/src/tokens/fet.ts index ba0560ce..ac0d59fc 100644 --- a/src/tokens/fet.ts +++ b/src/tokens/fet.ts @@ -13,7 +13,7 @@ const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => { "stake1uxerycuwj09h2n6wydjp4vk936la23p9dvn37ezlkmdl5ycq38hr4", // Development funds "stake1uypwcfxvg7uyzkyeue8fglq6fx7uxmampr2ahylyy4rg38cvky2pr", // Fraction Estate funds "stake1ux7pa94sgkzd0yawsu9e9ddj0vr07psyezksfek24m9wn2qtjf62u", // Marketing funds - "stake1u8qzt94vyvfvvs4qan02axtfwj2hz4dcqefpehara5rdh4q6h9xka", // Founder - Daniel Johnsen + "stake1u8qzt94vyvfvvs4qan02axtfwj2hz4dcqefpehara5rdh4q6h9xka", // Founder Daniel Johnsen "stake1uy74mhj5x3jdf8d9446xcwrw723pvqelksxwwxu5c6t799qcnww0q", // Charity funds ]); const treasury = Number(treasuryRaw); From 18c36d1468669401089884d96d675131fd9db691 Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 22:16:10 +0200 Subject: [PATCH 18/20] Update fet.ts --- src/tokens/fet.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tokens/fet.ts b/src/tokens/fet.ts index ac0d59fc..99b4426e 100644 --- a/src/tokens/fet.ts +++ b/src/tokens/fet.ts @@ -1,8 +1,7 @@ import { defaultFetcherOptions, SupplyFetcher } from "../types"; import { getAmountInAddresses, getBlockFrostInstance } from "../utils"; -const FET = - "815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25a"; +const FET = "815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25a"; const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => { const blockFrost = getBlockFrostInstance(options); From 66317d45435e8b7b185a0199ad65878a359a66dc Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 22:34:12 +0200 Subject: [PATCH 19/20] Update fet.ts From 95f2a1d556fe7adb3799b9ffd92c244bdc5d0259 Mon Sep 17 00:00:00 2001 From: Fraction Estate <140243674+FractionEstate@users.noreply.github.com> Date: Tue, 19 Sep 2023 22:37:56 +0200 Subject: [PATCH 20/20] Update fet.ts --- src/tokens/fet.ts | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/tokens/fet.ts b/src/tokens/fet.ts index 99b4426e..0d814aba 100644 --- a/src/tokens/fet.ts +++ b/src/tokens/fet.ts @@ -4,22 +4,22 @@ import { getAmountInAddresses, getBlockFrostInstance } from "../utils"; const FET = "815418a1b078a259e678ecccc9d7eac7648d10b88f6f75ce2db8a25a"; const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => { - const blockFrost = getBlockFrostInstance(options); - const total = 2e8; - const treasuryRaw = await getAmountInAddresses(blockFrost, FET, [ - "stake1uyyxjvthz4udwdrzr9pkkudpylasg99ufdzu7gpdfckxf2s5peell", // DEX funds - "stake1ux94pdq42nwx0g24ea3myjcnd8tvl354ku4ygedtgm7sfgc2hugz9", // Reserve funds - "stake1uxerycuwj09h2n6wydjp4vk936la23p9dvn37ezlkmdl5ycq38hr4", // Development funds - "stake1uypwcfxvg7uyzkyeue8fglq6fx7uxmampr2ahylyy4rg38cvky2pr", // Fraction Estate funds - "stake1ux7pa94sgkzd0yawsu9e9ddj0vr07psyezksfek24m9wn2qtjf62u", // Marketing funds - "stake1u8qzt94vyvfvvs4qan02axtfwj2hz4dcqefpehara5rdh4q6h9xka", // Founder Daniel Johnsen - "stake1uy74mhj5x3jdf8d9446xcwrw723pvqelksxwwxu5c6t799qcnww0q", // Charity funds - ]); - const treasury = Number(treasuryRaw); - return { - circulating: (total - treasury).toString(), - total: total.toString(), - }; + const blockFrost = getBlockFrostInstance(options); + const total = 2e8; + const treasuryRaw = await getAmountInAddresses(blockFrost, FET, [ + "stake1uyyxjvthz4udwdrzr9pkkudpylasg99ufdzu7gpdfckxf2s5peell", // DEX funds + "stake1ux94pdq42nwx0g24ea3myjcnd8tvl354ku4ygedtgm7sfgc2hugz9", // Reserve funds + "stake1uxerycuwj09h2n6wydjp4vk936la23p9dvn37ezlkmdl5ycq38hr4", // Development funds + "stake1uypwcfxvg7uyzkyeue8fglq6fx7uxmampr2ahylyy4rg38cvky2pr", // Fraction Estate funds + "stake1ux7pa94sgkzd0yawsu9e9ddj0vr07psyezksfek24m9wn2qtjf62u", // Marketing funds + "stake1u8qzt94vyvfvvs4qan02axtfwj2hz4dcqefpehara5rdh4q6h9xka", // Founder Daniel Johnsen + "stake1uy74mhj5x3jdf8d9446xcwrw723pvqelksxwwxu5c6t799qcnww0q", // Charity funds + ]); + const treasury = Number(treasuryRaw); + return { + circulating: (total - treasury).toString(), + total: total.toString(), + }; }; export default fetcher;