7144e57c93
* Denormalize user display fields onto bets * Make bet denormalization script fast enough to run it on prod * Make `placeBet`/`sellShares` immediately post denormalized info
70 lines
1.9 KiB
TypeScript
70 lines
1.9 KiB
TypeScript
import { Fees } from './fees'
|
|
|
|
export type Bet = {
|
|
id: string
|
|
userId: string
|
|
|
|
// denormalized for bet lists
|
|
userAvatarUrl?: string
|
|
userUsername: string
|
|
userName: string
|
|
|
|
contractId: string
|
|
createdTime: number
|
|
|
|
amount: number // bet size; negative if SELL bet
|
|
loanAmount?: number
|
|
outcome: string
|
|
shares: number // dynamic parimutuel pool weight or fixed ; negative if SELL bet
|
|
|
|
probBefore: number
|
|
probAfter: number
|
|
|
|
fees: Fees
|
|
|
|
isAnte?: boolean
|
|
isLiquidityProvision?: boolean
|
|
isRedemption?: boolean
|
|
challengeSlug?: string
|
|
|
|
// Props for bets in DPM contract below.
|
|
// A bet is either a BUY or a SELL that sells all of a previous buy.
|
|
isSold?: boolean // true if this BUY bet has been sold
|
|
// This field marks a SELL bet.
|
|
sale?: {
|
|
amount: number // amount user makes from sale
|
|
betId: string // id of BUY bet being sold
|
|
}
|
|
} & Partial<LimitProps>
|
|
|
|
export type NumericBet = Bet & {
|
|
value: number
|
|
allOutcomeShares: { [outcome: string]: number }
|
|
allBetAmounts: { [outcome: string]: number }
|
|
}
|
|
|
|
// Binary market limit order.
|
|
export type LimitBet = Bet & LimitProps
|
|
|
|
type LimitProps = {
|
|
orderAmount: number // Amount of limit order.
|
|
limitProb: number // [0, 1]. Bet to this probability.
|
|
isFilled: boolean // Whether all of the bet amount has been filled.
|
|
isCancelled: boolean // Whether to prevent any further fills.
|
|
// A record of each transaction that partially (or fully) fills the orderAmount.
|
|
// I.e. A limit order could be filled by partially matching with several bets.
|
|
// Non-limit orders can also be filled by matching with multiple limit orders.
|
|
fills: fill[]
|
|
}
|
|
|
|
export type fill = {
|
|
// The id the bet matched against, or null if the bet was matched by the pool.
|
|
matchedBetId: string | null
|
|
amount: number
|
|
shares: number
|
|
timestamp: number
|
|
// If the fill is a sale, it means the matching bet has shares of the same outcome.
|
|
// I.e. -fill.shares === matchedBet.shares
|
|
isSale?: boolean
|
|
}
|