Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lib/indexedDB.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ interface ExtendedHackathonDetails {
// Basic hackathon data
hackathonData: HackathonData
// Additional interaction data
approvedTokens: string[]
tokenMinAmounts: Record<string, string> // Store bigint as string for serialization
depositedTokens?: string[]
approvedTokens?: string[]
tokenMinAmounts?: Record<string, string> // Store bigint as string for serialization
tokenSymbols: Record<string, string>
tokenTotals: Record<string, string> // Store bigint as string for serialization
tokenDecimals: Record<string, number>
Expand Down