// A txn (pronounced "texan") respresents a payment between two ids on Manifold // Shortened from "transaction" to distinguish from Firebase transactions (and save chars) type AnyTxnType = Donation | Tip | Manalink type SourceType = 'USER' | 'CONTRACT' | 'CHARITY' | 'BANK' export type Txn = { id: string createdTime: number fromId: string fromType: SourceType toId: string toType: SourceType amount: number token: 'M$' // | 'USD' | MarketOutcome category: 'CHARITY' | 'MANALINK' | 'TIP' // | 'BET' // Any extra data data?: { [key: string]: any } // Human-readable description description?: string } & T type Donation = { fromType: 'USER' toType: 'CHARITY' category: 'CHARITY' } type Tip = { fromType: 'USER' toType: 'USER' category: 'TIP' data: { contractId: string commentId: string } } type Manalink = { fromType: 'USER' toType: 'USER' category: 'MANALINK' } export type DonationTxn = Txn & Donation export type TipTxn = Txn & Tip export type ManalinkTxn = Txn & Manalink