manifold/common/contract.ts

30 lines
905 B
TypeScript
Raw Normal View History

export type Contract = {
2022-01-10 23:52:03 +00:00
id: string
slug: string // auto-generated; must be unique
2022-01-10 23:52:03 +00:00
creatorId: string
creatorName: string
creatorUsername: string
2022-01-10 23:52:03 +00:00
question: string
description: string // More info about what the contract is about
outcomeType: 'BINARY' // | 'MULTI' | 'interval' | 'date'
// outcomes: ['YES', 'NO']
2022-01-10 23:52:03 +00:00
startPool: { YES: number; NO: number }
pool: { YES: number; NO: number }
totalShares: { YES: number; NO: number }
totalBets: { YES: number; NO: number }
2022-01-10 23:52:03 +00:00
createdTime: number // Milliseconds since epoch
lastUpdatedTime: number // If the question or description was changed
closeTime?: number // When no more trading is allowed
2022-01-10 23:52:03 +00:00
isResolved: boolean
resolutionTime?: number // When the contract creator resolved the market
resolution?: 'YES' | 'NO' | 'CANCEL' // Chosen by creator; must be one of outcomes
2022-01-10 23:52:03 +00:00
volume24Hours: number
volume7Days: number
}