From f13d59b5897855ceae617cddb5c426115cd470d6 Mon Sep 17 00:00:00 2001 From: adakondacoin <135918761+adakondacoin@users.noreply.github.com> Date: Mon, 29 Jul 2024 21:41:17 +0200 Subject: [PATCH] Update squeak.ts --- src/tokens/squeak.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tokens/squeak.ts b/src/tokens/squeak.ts index 03101fa6..0021bb98 100644 --- a/src/tokens/squeak.ts +++ b/src/tokens/squeak.ts @@ -3,7 +3,7 @@ import { getAmountInAddresses, getBlockFrostInstance } from "../utils"; const Squeak = "097f37ef3f64a7967c645cb2a40b67594b0f6f4d187d654ff927403753717565616b"; -const squeakFetcher: SupplyFetcher = async (options = defaultFetcherOptions) => { +const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => { const blockFrost = getBlockFrostInstance(options); const total = 1_000_000_000; @@ -18,4 +18,4 @@ const squeakFetcher: SupplyFetcher = async (options = defaultFetcherOptions) => }; }; -export default squeakFetcher; +export default fetcher;