We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63bb991 commit 0085b44Copy full SHA for 0085b44
1 file changed
src/services/StatsService.ts
@@ -22,7 +22,7 @@ export type ExtendedTokenStats = {
22
currencyCode: string;
23
marketCap: number;
24
circulatingSupply: number;
25
- maxSupply: 'N/A';
+ maxSupply: null;
26
provider: string;
27
lastUpdatedTimestamp: number;
28
accTradePrice24h: number | null;
@@ -125,7 +125,7 @@ export class StatsService extends DappStakingV3IndexerBase implements IStatsServ
125
marketCap: circulatingSupply * prices[index],
126
accTradePrice24h: null,
127
circulatingSupply,
128
- 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
129
provider: 'Stake Technologies Pte Ltd',
130
lastUpdatedTimestamp,
131
};
0 commit comments