SerpentChris / augur-core

Augur back-end (Ethereum contracts)

Home Page:https://www.augur.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

augur-core

Build Status

Ethereum contracts for a decentralized prediction market platform

Note: all augur-core contracts use fixedpoint. To give an example, 200*base / 5 would be 40 in that base. To multiply two fixed point numbers like 5 times 10 an example in base 10**18 would be 5*10**18 * 10*10**18 / 10**18 [we divide by the base to keep it in base 10**18]. For a division example, 18/10 would be 18*10**18 * 10**18 / (10*10**18).

Also note, Mist uses a different contract abi style than usual, to convert use the following regex ((.*?)) and replace with nothing [except don't do it for events].

Depends on Serpent and Pyethereum

About

Augur back-end (Ethereum contracts)

https://www.augur.net

License:GNU General Public License v3.0


Languages

Language:Python 100.0%Language:Shell 0.0%