Skip to content

Commit

Permalink
Result type
Browse files Browse the repository at this point in the history
  • Loading branch information
bobo-k2 committed Nov 27, 2024
1 parent 6efb8f6 commit c15f718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/StatsService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class StatsService extends DappStakingV3IndexerBase implements IStatsServ
}`,
});

return result.data.data.totalIssuances.map((item: any) => {
return result.data.data.totalIssuances.map((item: { id: string; timestamp: string; balance: string }) => {
return {
block: Number(item.id),
timestamp: Number(item.timestamp),
Expand Down

0 comments on commit c15f718

Please sign in to comment.