Skip to content

Commit

Permalink
remove supply on treasure from calc (#8)
Browse files Browse the repository at this point in the history
NOTE: doesn't yet account for Hyperlane's fees
  • Loading branch information
karelvuong authored Dec 12, 2024
1 parent bca3f02 commit 8259a8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/magic.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const getCoinGeckoPriceInfo = async (currencies = ["USD"]) => {
exports.getMagicTotalSupply = async () => {
const excludedList = Object.entries(TOTAL_SUPPLY_EXCLUDED);
const { totalSupplyTreasure, totalSupplyEth } = await getMagicTotalSupply();
const totalSupply = totalSupplyTreasure + totalSupplyEth;
const totalSupply = totalSupplyEth;
const excludedBalances = await Promise.all(
excludedList.map(([name, addresses]) =>
Promise.all(
Expand Down

0 comments on commit 8259a8d

Please sign in to comment.