zcash-grant-system/frontend/types/contribution.ts

10 lines
168 B
TypeScript

export interface Contribution {
id: string;
txId: string;
proposalId: number;
userId: number;
fromAddress: string;
amount: string;
dateCreated: number;
}