9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
|
export type Like = {
|
||
|
id: string // will be id of the object liked, i.e. contract.id
|
||
|
userId: string
|
||
|
type: 'contract'
|
||
|
createdTime: number
|
||
|
tipTxnId?: string
|
||
|
}
|
||
|
export const LIKE_TIP_AMOUNT = 5
|