Add token and category to Txn

This commit is contained in:
Austin Chen 2022-04-28 19:07:13 -04:00
parent d55cf571c5
commit 71be716d76

View File

@ -11,7 +11,9 @@ export type Txn = {
toType: source_type
amount: number
token: 'M$' // | 'USD' | MarketOutcome
category: 'CHARITY' // | 'BET' | 'TIP'
// Human-readable description
description?: string
}