Skip to content

Commit

Permalink
add annotation for types
Browse files Browse the repository at this point in the history
  • Loading branch information
djeck1432 committed Sep 12, 2024
1 parent 9c0840d commit d443cc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/starknet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const starknetIdNavigator = new StarknetIdNavigator(
CHAIN_ID,
);

const cache = new Map<string, any>();
const cache = new Map<string, { amount: number; is_claimable: boolean, is_claimed: boolean }[]>();

export const getVestingEvents = async (address: string) => {
const vesting_milestone_add_selector = hash.getSelectorFromName('VestingMilestoneAdded')
Expand Down

0 comments on commit d443cc2

Please sign in to comment.