Skip to content

Commit

Permalink
bubble total supply fix
Browse files Browse the repository at this point in the history
npm run format was run this time.
  • Loading branch information
similiken authored Jul 11, 2023
1 parent 2517a42 commit 90d7030
Showing 1 changed file with 10 additions and 0 deletions.
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 90d7030

Please sign in to comment.