Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Commit

Permalink
Add C4 token (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
edomalchukcodeware authored Dec 10, 2023
1 parent 2a3ae76 commit 2d5eeed
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import bankFetcher from "./tokens/bank";
import bookFetcher from "./tokens/book";
import bubbleFetcher from "./tokens/bubble";
import c3Fetcher from "./tokens/c3";
import c4Fetcher from "./tokens/c4";
import cblpFetcher from "./tokens/cblp";
import cbtcFetcher from "./tokens/cbtc";
import cgiFetcher from "./tokens/cgi";
Expand Down Expand Up @@ -247,4 +248,5 @@ export const supplyFetchers: Record<string, SupplyFetcher> = {
nebulaFetcher,
bbd0ec94cf9ccc1407b3dbc66bfbbff82ea49718ae4e3dceb817125f24574f524b:
workFetcher,
a00fdf4fb9ab6c8c2bd1533a2f14855edf12aed5ecbf96d4b5f5b9394334: c4Fetcher,
};
12 changes: 12 additions & 0 deletions src/tokens/c4.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { SupplyFetcher } from "../types";

const fetcher: SupplyFetcher = async () => {
const total = 1669428532;

return {
circulating: total.toString(),
total: total.toString(),
};
};

export default fetcher;

0 comments on commit 2d5eeed

Please sign in to comment.