Skip to content

Commit

Permalink
chore: make timestamp optional
Browse files Browse the repository at this point in the history
  • Loading branch information
james-a-morris committed Oct 25, 2024
1 parent d371499 commit f6fcc75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/indexer-api/src/dtos/balances.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const SpokePoolBalanceParams = s.object({
chainId: s.number(),
l1Token: s.optional(s.string()),
// unsure why we have timestamp, implies we are storign history of balances? this is in the spec.
timestamp: s.number(),
timestamp: s.optional(s.number()),
});

export type SpokePoolBalanceResultElement = {
Expand Down

0 comments on commit f6fcc75

Please sign in to comment.