Skip to content

Commit

Permalink
add BUBBLE (#85)
Browse files Browse the repository at this point in the history
* bubble total supply fix

npm run format was run this time.

* bubble token total supply fix

Bubble token has 100million tokens. This is a static total supply fix.
npm run format has been ran.

* fixed an entry
  • Loading branch information
similiken authored Jul 12, 2023
1 parent 4d990fc commit b4cc4c7
Show file tree
Hide file tree
Showing 2 changed files with 13 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 @@ -3,6 +3,7 @@ import agcFetcher from "./tokens/agc";
import agixFetcher from "./tokens/agix";
import ashibFetcher from "./tokens/ashib";
import bankFetcher from "./tokens/bank";
import bubbleFetcher from "./tokens/bubble";
import c3Fetcher from "./tokens/c3";
import cblpFetcher from "./tokens/cblp";
import chryFetcher from "./tokens/chry";
Expand Down Expand Up @@ -147,4 +148,6 @@ export const supplyFetchers: Record<string, SupplyFetcher> = {
stableFetcher,
c0ee29a85b13209423b10447d3c2e6a50641a15c57770e27cb9d507357696e67526964657273:
wrtFetcher,
"4fde92c2f6dbcfa2879b44f7453872b31394cfb2f70f1d4c411169ac427562626c65":
bubbleFetcher,
};
10 changes: 10 additions & 0 deletions src/tokens/bubble.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { SupplyFetcher } from "../types";

const fetcher: SupplyFetcher = async () => {
const total = 100000000;
return {
total: total.toString(),
};
};

export default fetcher;

0 comments on commit b4cc4c7

Please sign in to comment.