2018-10-24 12:52:11 +00:00
|
|
|
pragma solidity >=0.0;
|
2017-07-12 13:46:33 +00:00
|
|
|
import "../Events/Event.sol";
|
|
|
|
|
|
|
|
|
|
|
|
/// @title Scalar event contract - Scalar events resolve to a number within a range
|
|
|
|
/// @author Stefan George - <stefan@gnosis.pm>
|
|
|
|
contract ScalarEvent is Event {
|
|
|
|
using Math for *;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Constants
|
|
|
|
*/
|
|
|
|
uint8 public constant SHORT = 0;
|
|
|
|
uint8 public constant LONG = 1;
|
|
|
|
uint24 public constant OUTCOME_RANGE = 1000000;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Storage
|
|
|
|
*/
|
|
|
|
int public lowerBound;
|
|
|
|
int public upperBound;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Public functions
|
|
|
|
*/
|
|
|
|
/// @dev Contract constructor validates and sets basic event properties
|
|
|
|
/// @param _collateralToken Tokens used as collateral in exchange for outcome tokens
|
|
|
|
/// @param _oracle Oracle contract used to resolve the event
|
|
|
|
/// @param _lowerBound Lower bound for event outcome
|
|
|
|
/// @param _upperBound Lower bound for event outcome
|
2018-06-25 13:02:20 +00:00
|
|
|
constructor(
|
2017-07-12 13:46:33 +00:00
|
|
|
Token _collateralToken,
|
|
|
|
Oracle _oracle,
|
|
|
|
int _lowerBound,
|
|
|
|
int _upperBound
|
|
|
|
)
|
|
|
|
Event(_collateralToken, _oracle, 2)
|
|
|
|
{
|
|
|
|
// Validate bounds
|
|
|
|
require(_upperBound > _lowerBound);
|
|
|
|
lowerBound = _lowerBound;
|
|
|
|
upperBound = _upperBound;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @dev Exchanges sender's winning outcome tokens for collateral tokens
|
2019-10-21 22:05:34 +00:00
|
|
|
/// @return winnings Sender's winnings
|
2017-07-12 13:46:33 +00:00
|
|
|
function redeemWinnings()
|
|
|
|
public
|
2019-09-16 12:33:43 +00:00
|
|
|
override
|
2017-07-12 13:46:33 +00:00
|
|
|
returns (uint winnings)
|
|
|
|
{
|
|
|
|
// Winning outcome has to be set
|
|
|
|
require(isOutcomeSet);
|
|
|
|
// Calculate winnings
|
|
|
|
uint24 convertedWinningOutcome;
|
|
|
|
// Outcome is lower than defined lower bound
|
|
|
|
if (outcome < lowerBound)
|
|
|
|
convertedWinningOutcome = 0;
|
|
|
|
// Outcome is higher than defined upper bound
|
|
|
|
else if (outcome > upperBound)
|
|
|
|
convertedWinningOutcome = OUTCOME_RANGE;
|
|
|
|
// Map outcome to outcome range
|
|
|
|
else
|
2021-01-04 11:06:03 +00:00
|
|
|
convertedWinningOutcome = uint24(uint(int(uint(OUTCOME_RANGE)) * (outcome - lowerBound) / (upperBound - lowerBound)));
|
2017-07-12 13:46:33 +00:00
|
|
|
uint factorShort = OUTCOME_RANGE - convertedWinningOutcome;
|
|
|
|
uint factorLong = OUTCOME_RANGE - factorShort;
|
|
|
|
uint shortOutcomeTokenCount = outcomeTokens[SHORT].balanceOf(msg.sender);
|
|
|
|
uint longOutcomeTokenCount = outcomeTokens[LONG].balanceOf(msg.sender);
|
|
|
|
winnings = shortOutcomeTokenCount.mul(factorShort).add(longOutcomeTokenCount.mul(factorLong)) / OUTCOME_RANGE;
|
|
|
|
// Revoke all outcome tokens
|
|
|
|
outcomeTokens[SHORT].revoke(msg.sender, shortOutcomeTokenCount);
|
|
|
|
outcomeTokens[LONG].revoke(msg.sender, longOutcomeTokenCount);
|
|
|
|
// Payout winnings to sender
|
|
|
|
require(collateralToken.transfer(msg.sender, winnings));
|
2018-06-27 08:35:38 +00:00
|
|
|
emit WinningsRedemption(msg.sender, winnings);
|
2017-07-12 13:46:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// @dev Calculates and returns event hash
|
|
|
|
/// @return Event hash
|
|
|
|
function getEventHash()
|
|
|
|
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 (bytes32)
|
|
|
|
{
|
2018-06-14 10:28:33 +00:00
|
|
|
return keccak256(abi.encodePacked(collateralToken, oracle, lowerBound, upperBound));
|
2017-07-12 13:46:33 +00:00
|
|
|
}
|
|
|
|
}
|