76f27d1a93
* Numeric contract type * Create market numeric type * Add numeric graph (coded without testing) * Outline of numeric bet panel * Update bet panel logic * create numeric contracts * remove batching for antes for numeric markets * Remove focus * numeric market range [1, 100] * Zoom graph * Hide bet panels * getNumericBets * Add numeric resolution panel * Use getNumericBets in bet panel calc * Switch bucket count to 100 * Parallelize ante creation * placeBet for numeric markets * halve std of numeric bets * Update resolveMarket with numeric type * Set min and max for contract * lower std for numeric bets * calculateNumericDpmShares: use sorted order * Use min and max to map the input * Fix probability calc * normpdf variance mislabeled * range input * merge * change numeric graph color * fix getNewContract params * bet panel labels * validation * number input * fix bucketing * bucket input, numeric resolution panel * outcome label * merge * numeric bet panel on mobile * Make text underneath filled green answer bar selectable * Default to 'all' feed category when loading page. * fix numeric resolution panel * fix numeric bet panel calculations * display numeric resolution * don't render NumericBetPanel for non numeric markets * numeric bets: store shares, bet amounts across buckets in each bet object * restore your bets for numeric markets * numeric pnl calculations * remove hasUserHitManaLimit * contrain contract type * handle undefined allOutcomeShares * numeric ante bet amount * use correct amount for numeric dpm payouts * change numeric graph/outcome color * numeric constants * hack to show correct numeric payout in calculateDpmPayoutAfterCorrectBet * remove comment * fix ante display in bet list * halve bucket count * cast to NumericContract * fix merge imports * OUTCOME_TYPES * typo * lower bucket count to 200 * store raw numeric value with bet * store raw numeric resolution value * number input max length * create page: min, max to undefined if not numeric market * numeric resolution formatting * expected value for numeric markets * expected value for numeric markets * rearrange lines for readability * move normalpdf to util/math * show bets tab * check if outcomeMode is undefined * remove extraneous auto-merge cruft * hide comment status for numeric markets * import Co-authored-by: mantikoros <sgrugett@gmail.com>
265 lines
6.3 KiB
TypeScript
265 lines
6.3 KiB
TypeScript
import * as _ from 'lodash'
|
|
|
|
import { Bet, NumericBet } from './bet'
|
|
import { deductDpmFees, getDpmProbability } from './calculate-dpm'
|
|
import { DPM, FreeResponse, FullContract, Multi } from './contract'
|
|
import {
|
|
DPM_CREATOR_FEE,
|
|
DPM_FEES,
|
|
DPM_PLATFORM_FEE,
|
|
Fees,
|
|
noFees,
|
|
} from './fees'
|
|
import { addObjects } from './util/object'
|
|
|
|
export const getDpmCancelPayouts = (
|
|
contract: FullContract<DPM, any>,
|
|
bets: Bet[]
|
|
) => {
|
|
const { pool } = contract
|
|
const poolTotal = _.sum(Object.values(pool))
|
|
console.log('resolved N/A, pool M$', poolTotal)
|
|
|
|
const betSum = _.sumBy(bets, (b) => b.amount)
|
|
|
|
const payouts = bets.map((bet) => ({
|
|
userId: bet.userId,
|
|
payout: (bet.amount / betSum) * poolTotal,
|
|
}))
|
|
|
|
return {
|
|
payouts,
|
|
creatorPayout: 0,
|
|
liquidityPayouts: [],
|
|
collectedFees: contract.collectedFees ?? noFees,
|
|
}
|
|
}
|
|
|
|
export const getDpmStandardPayouts = (
|
|
outcome: string,
|
|
contract: FullContract<DPM, any>,
|
|
bets: Bet[]
|
|
) => {
|
|
const winningBets = bets.filter((bet) => bet.outcome === outcome)
|
|
|
|
const poolTotal = _.sum(Object.values(contract.pool))
|
|
const totalShares = _.sumBy(winningBets, (b) => b.shares)
|
|
|
|
const payouts = winningBets.map(({ userId, amount, shares }) => {
|
|
const winnings = (shares / totalShares) * poolTotal
|
|
const profit = winnings - amount
|
|
|
|
// profit can be negative if using phantom shares
|
|
const payout = amount + (1 - DPM_FEES) * Math.max(0, profit)
|
|
return { userId, profit, payout }
|
|
})
|
|
|
|
const profits = _.sumBy(payouts, (po) => Math.max(0, po.profit))
|
|
const creatorFee = DPM_CREATOR_FEE * profits
|
|
const platformFee = DPM_PLATFORM_FEE * profits
|
|
|
|
const finalFees: Fees = {
|
|
creatorFee,
|
|
platformFee,
|
|
liquidityFee: 0,
|
|
}
|
|
|
|
const collectedFees = addObjects<Fees>(
|
|
finalFees,
|
|
contract.collectedFees ?? {}
|
|
)
|
|
|
|
console.log(
|
|
'resolved',
|
|
outcome,
|
|
'pool',
|
|
poolTotal,
|
|
'profits',
|
|
profits,
|
|
'creator fee',
|
|
creatorFee
|
|
)
|
|
|
|
return {
|
|
payouts: payouts.map(({ userId, payout }) => ({ userId, payout })),
|
|
creatorPayout: creatorFee,
|
|
liquidityPayouts: [],
|
|
collectedFees,
|
|
}
|
|
}
|
|
|
|
export const getNumericDpmPayouts = (
|
|
outcome: string,
|
|
contract: FullContract<DPM, any>,
|
|
bets: NumericBet[]
|
|
) => {
|
|
const totalShares = _.sumBy(bets, (bet) => bet.allOutcomeShares[outcome] ?? 0)
|
|
const winningBets = bets.filter((bet) => !!bet.allOutcomeShares[outcome])
|
|
|
|
const poolTotal = _.sum(Object.values(contract.pool))
|
|
|
|
const payouts = winningBets.map(
|
|
({ userId, allBetAmounts, allOutcomeShares }) => {
|
|
const shares = allOutcomeShares[outcome] ?? 0
|
|
const winnings = (shares / totalShares) * poolTotal
|
|
|
|
const amount = allBetAmounts[outcome] ?? 0
|
|
const profit = winnings - amount
|
|
|
|
// profit can be negative if using phantom shares
|
|
const payout = amount + (1 - DPM_FEES) * Math.max(0, profit)
|
|
return { userId, profit, payout }
|
|
}
|
|
)
|
|
|
|
const profits = _.sumBy(payouts, (po) => Math.max(0, po.profit))
|
|
const creatorFee = DPM_CREATOR_FEE * profits
|
|
const platformFee = DPM_PLATFORM_FEE * profits
|
|
|
|
const finalFees: Fees = {
|
|
creatorFee,
|
|
platformFee,
|
|
liquidityFee: 0,
|
|
}
|
|
|
|
const collectedFees = addObjects<Fees>(
|
|
finalFees,
|
|
contract.collectedFees ?? {}
|
|
)
|
|
|
|
console.log(
|
|
'resolved numeric bucket: ',
|
|
outcome,
|
|
'pool',
|
|
poolTotal,
|
|
'profits',
|
|
profits,
|
|
'creator fee',
|
|
creatorFee
|
|
)
|
|
|
|
return {
|
|
payouts: payouts.map(({ userId, payout }) => ({ userId, payout })),
|
|
creatorPayout: creatorFee,
|
|
liquidityPayouts: [],
|
|
collectedFees,
|
|
}
|
|
}
|
|
|
|
export const getDpmMktPayouts = (
|
|
contract: FullContract<DPM, any>,
|
|
bets: Bet[],
|
|
resolutionProbability?: number
|
|
) => {
|
|
const p =
|
|
resolutionProbability === undefined
|
|
? getDpmProbability(contract.totalShares)
|
|
: resolutionProbability
|
|
|
|
const weightedShareTotal = _.sumBy(bets, (b) =>
|
|
b.outcome === 'YES' ? p * b.shares : (1 - p) * b.shares
|
|
)
|
|
|
|
const pool = contract.pool.YES + contract.pool.NO
|
|
|
|
const payouts = bets.map(({ userId, outcome, amount, shares }) => {
|
|
const betP = outcome === 'YES' ? p : 1 - p
|
|
const winnings = ((betP * shares) / weightedShareTotal) * pool
|
|
const profit = winnings - amount
|
|
const payout = deductDpmFees(amount, winnings)
|
|
return { userId, profit, payout }
|
|
})
|
|
|
|
const profits = _.sumBy(payouts, (po) => Math.max(0, po.profit))
|
|
|
|
const creatorFee = DPM_CREATOR_FEE * profits
|
|
const platformFee = DPM_PLATFORM_FEE * profits
|
|
|
|
const finalFees: Fees = {
|
|
creatorFee,
|
|
platformFee,
|
|
liquidityFee: 0,
|
|
}
|
|
|
|
const collectedFees = addObjects<Fees>(
|
|
finalFees,
|
|
contract.collectedFees ?? {}
|
|
)
|
|
|
|
console.log(
|
|
'resolved MKT',
|
|
p,
|
|
'pool',
|
|
pool,
|
|
'profits',
|
|
profits,
|
|
'creator fee',
|
|
creatorFee
|
|
)
|
|
|
|
return {
|
|
payouts: payouts.map(({ userId, payout }) => ({ userId, payout })),
|
|
creatorPayout: creatorFee,
|
|
liquidityPayouts: [],
|
|
collectedFees,
|
|
}
|
|
}
|
|
|
|
export const getPayoutsMultiOutcome = (
|
|
resolutions: { [outcome: string]: number },
|
|
contract: FullContract<DPM, Multi | FreeResponse>,
|
|
bets: Bet[]
|
|
) => {
|
|
const poolTotal = _.sum(Object.values(contract.pool))
|
|
const winningBets = bets.filter((bet) => resolutions[bet.outcome])
|
|
|
|
const betsByOutcome = _.groupBy(winningBets, (bet) => bet.outcome)
|
|
const sharesByOutcome = _.mapValues(betsByOutcome, (bets) =>
|
|
_.sumBy(bets, (bet) => bet.shares)
|
|
)
|
|
|
|
const probTotal = _.sum(Object.values(resolutions))
|
|
|
|
const payouts = winningBets.map(({ userId, outcome, amount, shares }) => {
|
|
const prob = resolutions[outcome] / probTotal
|
|
const winnings = (shares / sharesByOutcome[outcome]) * prob * poolTotal
|
|
const profit = winnings - amount
|
|
|
|
const payout = amount + (1 - DPM_FEES) * Math.max(0, profit)
|
|
return { userId, profit, payout }
|
|
})
|
|
|
|
const profits = _.sumBy(payouts, (po) => po.profit)
|
|
|
|
const creatorFee = DPM_CREATOR_FEE * profits
|
|
const platformFee = DPM_PLATFORM_FEE * profits
|
|
|
|
const finalFees: Fees = {
|
|
creatorFee,
|
|
platformFee,
|
|
liquidityFee: 0,
|
|
}
|
|
|
|
const collectedFees = addObjects<Fees>(
|
|
finalFees,
|
|
contract.collectedFees ?? noFees
|
|
)
|
|
|
|
console.log(
|
|
'resolved',
|
|
resolutions,
|
|
'pool',
|
|
poolTotal,
|
|
'profits',
|
|
profits,
|
|
'creator fee',
|
|
creatorFee
|
|
)
|
|
return {
|
|
payouts: payouts.map(({ userId, payout }) => ({ userId, payout })),
|
|
creatorPayout: creatorFee,
|
|
liquidityPayouts: [],
|
|
collectedFees,
|
|
}
|
|
}
|