Skip to content

Commit 0085b44

Browse files
authored
change maxSupply to null for ASTR token stats (#177)
1 parent 63bb991 commit 0085b44

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/services/StatsService.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export type ExtendedTokenStats = {
2222
currencyCode: string;
2323
marketCap: number;
2424
circulatingSupply: number;
25-
maxSupply: 'N/A';
25+
maxSupply: null;
2626
provider: string;
2727
lastUpdatedTimestamp: number;
2828
accTradePrice24h: number | null;
@@ -125,7 +125,7 @@ export class StatsService extends DappStakingV3IndexerBase implements IStatsServ
125125
marketCap: circulatingSupply * prices[index],
126126
accTradePrice24h: null,
127127
circulatingSupply,
128-
maxSupply: 'N/A', // since ASTR is inflationary, we don't have a max supply
128+
maxSupply: null, // since ASTR is inflationary, we don't have a max supply
129129
provider: 'Stake Technologies Pte Ltd',
130130
lastUpdatedTimestamp,
131131
};

0 commit comments

Comments
 (0)