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, };