Skip to content

Commit

Permalink
chore: add new API response types
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-dev123 committed Nov 20, 2024
1 parent 7b775db commit a580156
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/ingestors/highlight/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,17 @@ export type CollectionByAddress2 = {
};
};

export type CollectionByAddress = CollectionByAddress1 & CollectionByAddress2;
export type CollectionByAddress3 = {
collection: {
// Collection address
id: string;
name: string;
creator: string;
image: string;
animationUrl: string;
address: string;
};
primaryContract: string;
};

export type CollectionByAddress = CollectionByAddress1 & CollectionByAddress2 & CollectionByAddress3;

0 comments on commit a580156

Please sign in to comment.