From be7aa0c03ca96e9d985c4c484675ee911652c7f6 Mon Sep 17 00:00:00 2001 From: "Taegeon Go (Alan)" Date: Mon, 18 Aug 2025 14:37:36 +0900 Subject: [PATCH] change maxSupply to null for ASTR token stats --- src/services/StatsService.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/StatsService.ts b/src/services/StatsService.ts index 6a74704..b7c2627 100644 --- a/src/services/StatsService.ts +++ b/src/services/StatsService.ts @@ -22,7 +22,7 @@ export type ExtendedTokenStats = { currencyCode: string; marketCap: number; circulatingSupply: number; - maxSupply: 'N/A'; + maxSupply: null; provider: string; lastUpdatedTimestamp: number; accTradePrice24h: number | null; @@ -125,7 +125,7 @@ export class StatsService extends DappStakingV3IndexerBase implements IStatsServ marketCap: circulatingSupply * prices[index], accTradePrice24h: null, circulatingSupply, - maxSupply: 'N/A', // since ASTR is inflationary, we don't have a max supply + maxSupply: null, // since ASTR is inflationary, we don't have a max supply provider: 'Stake Technologies Pte Ltd', lastUpdatedTimestamp, };