Skip to content

Commit

Permalink
ADD PIGU
Browse files Browse the repository at this point in the history
  • Loading branch information
tehsoul committed Sep 4, 2024
1 parent 712edbc commit 1f74319
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 @@ -111,6 +111,7 @@ import optFetcher from "./tokens/opt";
import optimFetcher from "./tokens/optim";
import paviaFetcher from "./tokens/pavia";
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 @@ -458,4 +459,6 @@ export const supplyFetchers: Record<string, SupplyFetcher> = {
"81926a57a567c11f6dc502254c5ed2d11fdba4ed9f898916699c6f1753414645":
safeFetcher,
dce34158d07be7187401a756a3273b792f6476e2ea09c3f2ae7b229d63756c74: cultFetcher,
"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 1f74319

Please sign in to comment.