2018-10-24 12:52:11 +00:00
|
|
|
pragma solidity >=0.0;
|
2017-07-12 13:46:33 +00:00
|
|
|
import "../Utils/Math.sol";
|
|
|
|
import "../MarketMakers/MarketMaker.sol";
|
|
|
|
|
|
|
|
|
|
|
|
/// @title LMSR market maker contract - Calculates share prices based on share distribution and initial funding
|
|
|
|
/// @author Alan Lu - <alan.lu@gnosis.pm>
|
|
|
|
contract LMSRMarketMaker is MarketMaker {
|
|
|
|
using Math for *;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Constants
|
|
|
|
*/
|
|
|
|
uint constant ONE = 0x10000000000000000;
|
|
|
|
int constant EXP_LIMIT = 2352680790717288641401;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Public functions
|
|
|
|
*/
|
|
|
|
/// @dev Returns cost to buy given number of outcome tokens
|
|
|
|
/// @param market Market contract
|
|
|
|
/// @param outcomeTokenIndex Index of outcome to buy
|
|
|
|
/// @param outcomeTokenCount Number of outcome tokens to buy
|
2019-10-21 22:05:34 +00:00
|
|
|
/// @return cost Cost
|
2017-07-12 13:46:33 +00:00
|
|
|
function calcCost(Market market, uint8 outcomeTokenIndex, uint outcomeTokenCount)
|
|
|
|
public
|
2019-09-16 12:33:43 +00:00
|
|
|
override
|
2018-07-02 09:14:28 +00:00
|
|
|
view
|
2017-07-12 13:46:33 +00:00
|
|
|
returns (uint cost)
|
|
|
|
{
|
|
|
|
require(market.eventContract().getOutcomeCount() > 1);
|
|
|
|
int[] memory netOutcomeTokensSold = getNetOutcomeTokensSold(market);
|
|
|
|
// Calculate cost level based on net outcome token balances
|
|
|
|
int logN = Math.ln(netOutcomeTokensSold.length * ONE);
|
|
|
|
uint funding = market.funding();
|
|
|
|
int costLevelBefore = calcCostLevel(logN, netOutcomeTokensSold, funding);
|
|
|
|
// Add outcome token count to net outcome token balance
|
|
|
|
require(int(outcomeTokenCount) >= 0);
|
|
|
|
netOutcomeTokensSold[outcomeTokenIndex] = netOutcomeTokensSold[outcomeTokenIndex].add(int(outcomeTokenCount));
|
|
|
|
// Calculate cost level after balance was updated
|
|
|
|
int costLevelAfter = calcCostLevel(logN, netOutcomeTokensSold, funding);
|
|
|
|
// Calculate cost as cost level difference
|
|
|
|
require(costLevelAfter >= costLevelBefore);
|
|
|
|
cost = uint(costLevelAfter - costLevelBefore);
|
|
|
|
// Take the ceiling to account for rounding
|
|
|
|
if (cost / ONE * ONE == cost)
|
|
|
|
cost /= ONE;
|
|
|
|
else
|
|
|
|
// Integer division by ONE ensures there is room to (+ 1)
|
|
|
|
cost = cost / ONE + 1;
|
|
|
|
// Make sure cost is not bigger than 1 per share
|
|
|
|
if (cost > outcomeTokenCount)
|
|
|
|
cost = outcomeTokenCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @dev Returns profit for selling given number of outcome tokens
|
|
|
|
/// @param market Market contract
|
|
|
|
/// @param outcomeTokenIndex Index of outcome to sell
|
|
|
|
/// @param outcomeTokenCount Number of outcome tokens to sell
|
2019-10-21 22:05:34 +00:00
|
|
|
/// @return profit Profit
|
2017-07-12 13:46:33 +00:00
|
|
|
function calcProfit(Market market, uint8 outcomeTokenIndex, uint outcomeTokenCount)
|
|
|
|
public
|
2019-09-16 12:33:43 +00:00
|
|
|
override
|
2018-07-02 09:14:28 +00:00
|
|
|
view
|
2017-07-12 13:46:33 +00:00
|
|
|
returns (uint profit)
|
|
|
|
{
|
|
|
|
require(market.eventContract().getOutcomeCount() > 1);
|
|
|
|
int[] memory netOutcomeTokensSold = getNetOutcomeTokensSold(market);
|
|
|
|
// Calculate cost level based on net outcome token balances
|
|
|
|
int logN = Math.ln(netOutcomeTokensSold.length * ONE);
|
|
|
|
uint funding = market.funding();
|
|
|
|
int costLevelBefore = calcCostLevel(logN, netOutcomeTokensSold, funding);
|
|
|
|
// Subtract outcome token count from the net outcome token balance
|
|
|
|
require(int(outcomeTokenCount) >= 0);
|
|
|
|
netOutcomeTokensSold[outcomeTokenIndex] = netOutcomeTokensSold[outcomeTokenIndex].sub(int(outcomeTokenCount));
|
|
|
|
// Calculate cost level after balance was updated
|
|
|
|
int costLevelAfter = calcCostLevel(logN, netOutcomeTokensSold, funding);
|
|
|
|
// Calculate profit as cost level difference
|
|
|
|
require(costLevelBefore >= costLevelAfter);
|
|
|
|
// Take the floor
|
|
|
|
profit = uint(costLevelBefore - costLevelAfter) / ONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @dev Returns marginal price of an outcome
|
|
|
|
/// @param market Market contract
|
|
|
|
/// @param outcomeTokenIndex Index of outcome to determine marginal price of
|
2019-10-21 22:05:34 +00:00
|
|
|
/// @return price Marginal price of an outcome as a fixed point number
|
2017-07-12 13:46:33 +00:00
|
|
|
function calcMarginalPrice(Market market, uint8 outcomeTokenIndex)
|
|
|
|
public
|
2019-09-16 12:33:43 +00:00
|
|
|
override
|
2018-07-02 09:14:28 +00:00
|
|
|
view
|
2017-07-12 13:46:33 +00:00
|
|
|
returns (uint price)
|
|
|
|
{
|
|
|
|
require(market.eventContract().getOutcomeCount() > 1);
|
|
|
|
int[] memory netOutcomeTokensSold = getNetOutcomeTokensSold(market);
|
|
|
|
int logN = Math.ln(netOutcomeTokensSold.length * ONE);
|
|
|
|
uint funding = market.funding();
|
|
|
|
// The price function is exp(quantities[i]/b) / sum(exp(q/b) for q in quantities)
|
|
|
|
// To avoid overflow, calculate with
|
|
|
|
// exp(quantities[i]/b - offset) / sum(exp(q/b - offset) for q in quantities)
|
2018-06-21 11:58:38 +00:00
|
|
|
(uint256 sum, , uint256 outcomeExpTerm) = sumExpOffset(logN, netOutcomeTokensSold, funding, outcomeTokenIndex);
|
2017-07-12 13:46:33 +00:00
|
|
|
return outcomeExpTerm / (sum / ONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Private functions
|
|
|
|
*/
|
|
|
|
/// @dev Calculates the result of the LMSR cost function which is used to
|
|
|
|
/// derive prices from the market state
|
|
|
|
/// @param logN Logarithm of the number of outcomes
|
|
|
|
/// @param netOutcomeTokensSold Net outcome tokens sold by market
|
|
|
|
/// @param funding Initial funding for market
|
2019-10-21 22:05:34 +00:00
|
|
|
/// @return costLevel Cost level
|
2018-07-14 21:42:01 +00:00
|
|
|
function calcCostLevel(int logN, int[] memory netOutcomeTokensSold, uint funding)
|
2017-07-12 13:46:33 +00:00
|
|
|
private
|
2018-07-02 09:14:28 +00:00
|
|
|
view
|
2017-07-12 13:46:33 +00:00
|
|
|
returns(int costLevel)
|
|
|
|
{
|
|
|
|
// The cost function is C = b * log(sum(exp(q/b) for q in quantities)).
|
|
|
|
// To avoid overflow, we need to calc with an exponent offset:
|
|
|
|
// C = b * (offset + log(sum(exp(q/b - offset) for q in quantities)))
|
2018-06-21 11:58:38 +00:00
|
|
|
(uint256 sum, int256 offset, ) = sumExpOffset(logN, netOutcomeTokensSold, funding, 0);
|
2017-07-12 13:46:33 +00:00
|
|
|
costLevel = Math.ln(sum);
|
|
|
|
costLevel = costLevel.add(offset);
|
|
|
|
costLevel = (costLevel.mul(int(ONE)) / logN).mul(int(funding));
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @dev Calculates sum(exp(q/b - offset) for q in quantities), where offset is set
|
|
|
|
/// so that the sum fits in 248-256 bits
|
|
|
|
/// @param logN Logarithm of the number of outcomes
|
|
|
|
/// @param netOutcomeTokensSold Net outcome tokens sold by market
|
|
|
|
/// @param funding Initial funding for market
|
|
|
|
/// @param outcomeIndex Index of exponential term to extract (for use by marginal price function)
|
2019-10-28 23:09:18 +00:00
|
|
|
/// @return sum The sum of the outcomes
|
|
|
|
/// @return offset The offset that is used for all
|
|
|
|
/// @return outcomeExpTerm The summand associated with the supplied index
|
2018-07-14 21:42:01 +00:00
|
|
|
function sumExpOffset(int logN, int[] memory netOutcomeTokensSold, uint funding, uint8 outcomeIndex)
|
2017-07-12 13:46:33 +00:00
|
|
|
private
|
2018-07-02 09:14:28 +00:00
|
|
|
view
|
2017-07-12 13:46:33 +00:00
|
|
|
returns (uint sum, int offset, uint outcomeExpTerm)
|
|
|
|
{
|
|
|
|
// Naive calculation of this causes an overflow
|
|
|
|
// since anything above a bit over 133*ONE supplied to exp will explode
|
|
|
|
// as exp(133) just about fits into 192 bits of whole number data.
|
|
|
|
|
|
|
|
// The choice of this offset is subject to another limit:
|
|
|
|
// computing the inner sum successfully.
|
|
|
|
// Since the index is 8 bits, there has to be 8 bits of headroom for
|
|
|
|
// each summand, meaning q/b - offset <= exponential_limit,
|
|
|
|
// where that limit can be found with `mp.floor(mp.log((2**248 - 1) / ONE) * ONE)`
|
|
|
|
// That is what EXP_LIMIT is set to: it is about 127.5
|
|
|
|
|
|
|
|
// finally, if the distribution looks like [BIG, tiny, tiny...], using a
|
|
|
|
// BIG offset will cause the tiny quantities to go really negative
|
|
|
|
// causing the associated exponentials to vanish.
|
|
|
|
|
|
|
|
int maxQuantity = Math.max(netOutcomeTokensSold);
|
|
|
|
require(logN >= 0 && int(funding) >= 0);
|
|
|
|
offset = maxQuantity.mul(logN) / int(funding);
|
|
|
|
offset = offset.sub(EXP_LIMIT);
|
|
|
|
uint term;
|
|
|
|
for (uint8 i = 0; i < netOutcomeTokensSold.length; i++) {
|
|
|
|
term = Math.exp((netOutcomeTokensSold[i].mul(logN) / int(funding)).sub(offset));
|
|
|
|
if (i == outcomeIndex)
|
|
|
|
outcomeExpTerm = term;
|
|
|
|
sum = sum.add(term);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @dev Gets net outcome tokens sold by market. Since all sets of outcome tokens are backed by
|
|
|
|
/// corresponding collateral tokens, the net quantity of a token sold by the market is the
|
|
|
|
/// number of collateral tokens (which is the same as the number of outcome tokens the
|
|
|
|
/// market created) subtracted by the quantity of that token held by the market.
|
|
|
|
/// @param market Market contract
|
2019-10-21 22:05:34 +00:00
|
|
|
/// @return quantities Net outcome tokens sold by market
|
2017-07-12 13:46:33 +00:00
|
|
|
function getNetOutcomeTokensSold(Market market)
|
|
|
|
private
|
2018-07-02 09:14:28 +00:00
|
|
|
view
|
2018-07-14 21:42:01 +00:00
|
|
|
returns (int[] memory quantities)
|
2017-07-12 13:46:33 +00:00
|
|
|
{
|
|
|
|
quantities = new int[](market.eventContract().getOutcomeCount());
|
|
|
|
for (uint8 i = 0; i < quantities.length; i++)
|
|
|
|
quantities[i] = market.netOutcomeTokensSold(i);
|
|
|
|
}
|
|
|
|
}
|