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, 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, 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( 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, 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( 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, 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( 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, 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( 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, } }