Skip to content

Commit

Permalink
Clean Up
Browse files Browse the repository at this point in the history
clean up
  • Loading branch information
ctvvaultkeeper committed Jun 22, 2024
1 parent 3216c98 commit 301a3d6
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/tokens/ctv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,16 @@ import { getAmountInAddresses, getBlockFrostInstance } from "../utils";

const CTV = "9f452e23804df3040b352b478039357b506ad3b50d2ce0d7cbd5f806435456";

// Define the treasury addresses for the CTV token
const TREASURY_ADDRESSES = [
"addr1qyjwhsj246x8nf9evkadxtt0crgg2qjp7mk76zdnm38r0qp397a6yhn3qpzwt3ekwvtmptfxd8427egmlrrmufxvkgtsna5evs", // $ctv4vaults - Vault Seeker NFT Staking Rewards
"addr1qy5u9xul7vfhn3gvk68zzqfxxl6uxy5n7j3kq39aet06f4qh8u90v36crqhfj4stq2vmj98lyqzryd5nfg4j5ca6cjmqq9xzgt", // $ctv_reserve - Community controlled reserves
// Add more treasury addresses as needed
"addr1qyjwhsj246x8nf9evkadxtt0crgg2qjp7mk76zdnm38r0qp397a6yhn3qpzwt3ekwvtmptfxd8427egmlrrmufxvkgtsna5evs", // $ctv4vaults - vault seeker nft staking rewards
"addr1qy5u9xul7vfhn3gvk68zzqfxxl6uxy5n7j3kq39aet06f4qh8u90v36crqhfj4stq2vmj98lyqzryd5nfg4j5ca6cjmqq9xzgt", // $ctv_reserve - community controlled reserves
];

const fetcher: SupplyFetcher = async (options = defaultFetcherOptions) => {
const blockFrost = getBlockFrostInstance(options);
const total = 1e9; // Define the total supply of CTV, adjust as needed
const total = 100_000_000;
const treasury =
Number(await getAmountInAddresses(blockFrost, CTV, TREASURY_ADDRESSES)) /
1e6; // Assuming 6 decimal places
Number(await getAmountInAddresses(blockFrost, CTV, TREASURY_ADDRESSES));
return {
circulating: (total - treasury).toString(),
total: total.toString(),
Expand Down

0 comments on commit 301a3d6

Please sign in to comment.