2022-08-30 15:38:59 +00:00
|
|
|
export type Like = {
|
|
|
|
id: string // will be id of the object liked, i.e. contract.id
|
|
|
|
userId: string
|
2022-10-14 12:05:07 +00:00
|
|
|
type: 'contract' | 'post'
|
2022-08-30 15:38:59 +00:00
|
|
|
createdTime: number
|
2022-08-30 23:13:25 +00:00
|
|
|
tipTxnId?: string // only holds most recent tip txn id
|
2022-08-30 15:38:59 +00:00
|
|
|
}
|
2022-10-01 20:57:47 +00:00
|
|
|
export const LIKE_TIP_AMOUNT = 10
|
2022-10-14 06:47:51 +00:00
|
|
|
export const TIP_UNDO_DURATION = 2000
|