From 71be716d76d8c3d7469311bb2f0fc04f8b66d390 Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Thu, 28 Apr 2022 19:07:13 -0400 Subject: [PATCH] Add `token` and `category` to Txn --- common/txn.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/txn.ts b/common/txn.ts index 43e6287b..6f1f5415 100644 --- a/common/txn.ts +++ b/common/txn.ts @@ -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 }