Skip to content

Commit

Permalink
feat: add updated_at / claim
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrelstan committed Feb 4, 2022
1 parent 85a0904 commit 7bd8c52
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions server/interfaces/Tokens.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
export default interface Tokens {
id: number | string;
id: string;
capture_id: string;
wallet_id: string;
capture_id: number;
capture_photo_url: string;
planter_id: number;
planter_first_name: string;
planter_last_name: string;
planter_photo_url: string;
transfer_pending: boolean;
transfer_pending_id: string;
created_at: string;
updated_at: string;
claim: boolean;
}

0 comments on commit 7bd8c52

Please sign in to comment.