Skip to content

Commit

Permalink
ADD PIGU (#370)
Browse files Browse the repository at this point in the history
  • Loading branch information
tehsoul authored Sep 11, 2024
1 parent 2a10e82 commit 254a623
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ import optimFetcher from "./tokens/optim";
import paviaFetcher from "./tokens/pavia";
import peepeeFetcher from "./tokens/peepee";
import pepeblueFetcher from "./tokens/pepeblue";
import piguFetcher from "./tokens/pigu";
import pirateFetcher from "./tokens/pirate";
import porkeFetcher from "./tokens/porke";
import proxiesFetcher from "./tokens/proxies";
Expand Down Expand Up @@ -466,4 +467,6 @@ export const supplyFetchers: Record<string, SupplyFetcher> = {
"07ccfad78099fef727bfc64de1cf2e684c0872aab3c3bb3bed5e1081": peepeeFetcher,
"05c4bcecccff054c9aefff8bdc310e1edb8baa0756d912b47ae45d694d65656d":
meemFetcher,
"9d8c863907e6e58823c9af13759e196dbf5da172b7d4ce37d5d1147950494755":
piguFetcher,
};
11 changes: 11 additions & 0 deletions src/tokens/pigu.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { SupplyFetcher } from "../types";

const fetcher: SupplyFetcher = async () => {
const total = 1_000_000_000; // 1B
return {
circulating: total.toString(),
total: total.toString(),
};
};

export default fetcher;

0 comments on commit 254a623

Please sign in to comment.