Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 980 Bytes

File metadata and controls

36 lines (26 loc) · 980 Bytes

Prediction Markets Plasma App

Setup

You need system-wide installations of Python 3.6, Node.js 10, Solidity 0.5.17, yarn and npm.

git submodule update --init --recursive

./scripts/init.sh

cd augur/packages/augur-core
# Install dependencies by following instructions from the README in this directory

cd predicate/packages/augur-core
# Install dependencies by following instructions from the README in this directory

Compile contracts and generate typescript typings

yarn compile

Run test

./scripts/test.sh

Note: on macOS, you'll need to use virtualenv or homebrew Python to work around System Integrity Protection. To do this using virtualenv, run:

python3 -m venv venv
source venv/bin/activate
python3 -m pip install -r requirements.txt
python3 -m pip install pytest