-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
Showing
2 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |