2022-04-29 23:35:56 +00:00
|
|
|
// A txn (pronounced "texan") respresents a payment between two ids on Manifold
|
|
|
|
// Shortened from "transaction" to distinguish from Firebase transactions (and save chars)
|
|
|
|
export type Txn = {
|
|
|
|
id: string
|
|
|
|
createdTime: number
|
|
|
|
|
|
|
|
fromId: string
|
|
|
|
fromType: SourceType
|
|
|
|
|
|
|
|
toId: string
|
|
|
|
toType: SourceType
|
|
|
|
|
|
|
|
amount: number
|
|
|
|
token: 'M$' // | 'USD' | MarketOutcome
|
|
|
|
|
2022-06-17 21:31:21 +00:00
|
|
|
category: 'CHARITY' // | 'BET' | 'TIP'
|
2022-04-29 23:35:56 +00:00
|
|
|
// Human-readable description
|
|
|
|
description?: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export type SourceType = 'USER' | 'CONTRACT' | 'CHARITY' | 'BANK'
|