Skip to content

Commit

Permalink
Update squeak.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
adakondacoin authored Jul 29, 2024
1 parent e019266 commit 07ea2f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/tokens/squeak.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { defaultFetcherOptions, SupplyFetcher } from "../types";
import { getAmountInAddresses, getBlockFrostInstance } from "../utils";

const Squeak = "097f37ef3f64a7967c645cb2a40b67594b0f6f4d187d654ff927403753717565616b";
const SQUEAK = "097f37ef3f64a7967c645cb2a40b67594b0f6f4d187d654ff927403753717565616b";

const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => {
const blockFrost = getBlockFrostInstance(options);
const total = 1_000_000_000;

const burnRaw = await getAmountInAddresses(blockFrost, Squeak, [
"addr1z8kadskrrswl3avwe9psd3mar5l7shf06slyxr2tetwln4nzg06w6dvxg0vuzx4s0uenlr0vfucctcfwpa2eshd86taqduntvj", //$chasm
const burnRaw = await getAmountInAddresses(blockFrost, SQUEAK, [
"addr1z8kadskrrswl3avwe9psd3mar5l7shf06slyxr2tetwln4nzg06w6dvxg0vuzx4s0uenlr0vfucctcfwpa2eshd86taqduntvj",
]);

const burn = Number(burnRaw);
Expand Down

0 comments on commit 07ea2f5

Please sign in to comment.