Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Commit

Permalink
Corrected SNEPE total supply (#164)
Browse files Browse the repository at this point in the history
* Added SNEPE

* Formatting

* Formatting

* retrigger checks

* retrigger checks

* Corrected SNEPE total supply

---------

Co-authored-by: Patrik <51710571+shadowkora@users.noreply.github.com>
  • Loading branch information
hazryder and shadowkora authored Nov 7, 2023
1 parent 09bc35a commit 01d085a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tokens/snepe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const snepeFetcher: SupplyFetcher = async (options = defaultFetcherOptions) => {
]);
return {
circulating: (total - treasury).toString(),
total: (total - treasury).toString(),
total: total.toString(),
};
};

Expand Down

0 comments on commit 01d085a

Please sign in to comment.