├── .babelrc ├── .eslintrc ├── .firebaserc ├── .gitignore ├── .node-xmlhttprequest-sync-74532 ├── README.md ├── config ├── env.js ├── jest │ ├── cssTransform.js │ └── fileTransform.js ├── paths.js ├── polyfills.js ├── webpack.config.dev.js └── webpack.config.prod.js ├── contracts ├── Migrations.sol ├── Prediction.sol ├── PredictionMarket.sol └── zeppelin-solidity │ └── contracts │ ├── math │ └── SafeMath.sol │ ├── ownership │ └── Ownable.sol │ └── payment │ └── PullPayment.sol ├── firebase.json ├── img └── soltest.png ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── public ├── favicon.ico └── index.html ├── scripts ├── build.js ├── rpc.sh ├── start.js └── test.js ├── src ├── about │ └── components │ │ └── AboutComponent.js ├── common │ └── components │ │ ├── ConnectComponent.js │ │ └── RandomGifComponent.js ├── constants.js ├── debug │ └── components │ │ └── DebugComponent.js ├── index.js ├── main │ ├── components │ │ ├── AppComponent.js │ │ ├── IncompatibleComponent.js │ │ ├── NavigationComponent.js │ │ └── NotFoundComponent.js │ ├── reducer.js │ └── store.js ├── market │ ├── MarketReducer.js │ ├── actions │ │ ├── ConnectMarketAction.js │ │ ├── CreatePredictionAction.js │ │ ├── GetPredictionPreviewAction.js │ │ └── index.js │ ├── components │ │ └── PredictionListItemComponent.js │ └── containers │ │ ├── CreatePredictionComponent.js │ │ └── MarketComponent.js ├── network │ ├── NetworkReducer.js │ └── actions │ │ ├── ConnectNetworkAction.js │ │ ├── SetActiveAccountAction.js │ │ ├── SetWaitingAction.js │ │ ├── WatchAccountChangesAction.js │ │ ├── WatchNetworkChangesAction.js │ │ └── index.js ├── prediction │ ├── PredictionReducer.js │ ├── actions │ │ ├── ConnectPredictionAction.js │ │ ├── PlaceBetAction.js │ │ ├── PurgeAction.js │ │ ├── ResetPredictionAction.js │ │ ├── ResolvePredictionAction.js │ │ ├── UpdateBetHistoryAction.js │ │ ├── WithdrawFeesAction.js │ │ ├── WithdrawPrizeAction.js │ │ ├── index.js │ │ └── utils │ │ │ └── PredictionUtil.js │ ├── components │ │ ├── CommentsComponent.js │ │ ├── FinishComponent.js │ │ ├── HistoryComponent.js │ │ ├── InfoComponent.js │ │ ├── PlaceBetComponent.js │ │ ├── PurgeComponent.js │ │ ├── ResolveComponent.js │ │ ├── UserInfoComponent.js │ │ ├── WaitComponent.js │ │ └── WithdrawComponent.js │ └── containers │ │ └── PredictionComponent.js ├── styles │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── index.css │ └── themes │ │ └── bootstrap-slate-theme.css └── utils │ ├── DateUtil.js │ ├── MiscUtil.js │ ├── PredictionState.js │ └── Web3Util.js ├── test ├── PredictionMarket_GeneralTests.js ├── Prediction_BetTests.js ├── Prediction_GeneralTests.js ├── Prediction_ResolveTests.js ├── Prediction_WithdrawTests.js ├── sims │ └── create_predictions.js └── utils │ └── TestUtil.js └── truffle.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/.eslintrc -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-xmlhttprequest-sync-74532: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/README.md -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/config/env.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/config/polyfills.js -------------------------------------------------------------------------------- /config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/config/webpack.config.dev.js -------------------------------------------------------------------------------- /config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/config/webpack.config.prod.js -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/Prediction.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/contracts/Prediction.sol -------------------------------------------------------------------------------- /contracts/PredictionMarket.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/contracts/PredictionMarket.sol -------------------------------------------------------------------------------- /contracts/zeppelin-solidity/contracts/math/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/contracts/zeppelin-solidity/contracts/math/SafeMath.sol -------------------------------------------------------------------------------- /contracts/zeppelin-solidity/contracts/ownership/Ownable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/contracts/zeppelin-solidity/contracts/ownership/Ownable.sol -------------------------------------------------------------------------------- /contracts/zeppelin-solidity/contracts/payment/PullPayment.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/contracts/zeppelin-solidity/contracts/payment/PullPayment.sol -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/firebase.json -------------------------------------------------------------------------------- /img/soltest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/img/soltest.png -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/public/index.html -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/rpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/scripts/rpc.sh -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/scripts/test.js -------------------------------------------------------------------------------- /src/about/components/AboutComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/about/components/AboutComponent.js -------------------------------------------------------------------------------- /src/common/components/ConnectComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/common/components/ConnectComponent.js -------------------------------------------------------------------------------- /src/common/components/RandomGifComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/common/components/RandomGifComponent.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/debug/components/DebugComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/debug/components/DebugComponent.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/index.js -------------------------------------------------------------------------------- /src/main/components/AppComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/main/components/AppComponent.js -------------------------------------------------------------------------------- /src/main/components/IncompatibleComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/main/components/IncompatibleComponent.js -------------------------------------------------------------------------------- /src/main/components/NavigationComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/main/components/NavigationComponent.js -------------------------------------------------------------------------------- /src/main/components/NotFoundComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/main/components/NotFoundComponent.js -------------------------------------------------------------------------------- /src/main/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/main/reducer.js -------------------------------------------------------------------------------- /src/main/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/main/store.js -------------------------------------------------------------------------------- /src/market/MarketReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/market/MarketReducer.js -------------------------------------------------------------------------------- /src/market/actions/ConnectMarketAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/market/actions/ConnectMarketAction.js -------------------------------------------------------------------------------- /src/market/actions/CreatePredictionAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/market/actions/CreatePredictionAction.js -------------------------------------------------------------------------------- /src/market/actions/GetPredictionPreviewAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/market/actions/GetPredictionPreviewAction.js -------------------------------------------------------------------------------- /src/market/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/market/actions/index.js -------------------------------------------------------------------------------- /src/market/components/PredictionListItemComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/market/components/PredictionListItemComponent.js -------------------------------------------------------------------------------- /src/market/containers/CreatePredictionComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/market/containers/CreatePredictionComponent.js -------------------------------------------------------------------------------- /src/market/containers/MarketComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/market/containers/MarketComponent.js -------------------------------------------------------------------------------- /src/network/NetworkReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/network/NetworkReducer.js -------------------------------------------------------------------------------- /src/network/actions/ConnectNetworkAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/network/actions/ConnectNetworkAction.js -------------------------------------------------------------------------------- /src/network/actions/SetActiveAccountAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/network/actions/SetActiveAccountAction.js -------------------------------------------------------------------------------- /src/network/actions/SetWaitingAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/network/actions/SetWaitingAction.js -------------------------------------------------------------------------------- /src/network/actions/WatchAccountChangesAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/network/actions/WatchAccountChangesAction.js -------------------------------------------------------------------------------- /src/network/actions/WatchNetworkChangesAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/network/actions/WatchNetworkChangesAction.js -------------------------------------------------------------------------------- /src/network/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/network/actions/index.js -------------------------------------------------------------------------------- /src/prediction/PredictionReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/PredictionReducer.js -------------------------------------------------------------------------------- /src/prediction/actions/ConnectPredictionAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/actions/ConnectPredictionAction.js -------------------------------------------------------------------------------- /src/prediction/actions/PlaceBetAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/actions/PlaceBetAction.js -------------------------------------------------------------------------------- /src/prediction/actions/PurgeAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/actions/PurgeAction.js -------------------------------------------------------------------------------- /src/prediction/actions/ResetPredictionAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/actions/ResetPredictionAction.js -------------------------------------------------------------------------------- /src/prediction/actions/ResolvePredictionAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/actions/ResolvePredictionAction.js -------------------------------------------------------------------------------- /src/prediction/actions/UpdateBetHistoryAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/actions/UpdateBetHistoryAction.js -------------------------------------------------------------------------------- /src/prediction/actions/WithdrawFeesAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/actions/WithdrawFeesAction.js -------------------------------------------------------------------------------- /src/prediction/actions/WithdrawPrizeAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/actions/WithdrawPrizeAction.js -------------------------------------------------------------------------------- /src/prediction/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/actions/index.js -------------------------------------------------------------------------------- /src/prediction/actions/utils/PredictionUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/actions/utils/PredictionUtil.js -------------------------------------------------------------------------------- /src/prediction/components/CommentsComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/components/CommentsComponent.js -------------------------------------------------------------------------------- /src/prediction/components/FinishComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/components/FinishComponent.js -------------------------------------------------------------------------------- /src/prediction/components/HistoryComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/components/HistoryComponent.js -------------------------------------------------------------------------------- /src/prediction/components/InfoComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/components/InfoComponent.js -------------------------------------------------------------------------------- /src/prediction/components/PlaceBetComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/components/PlaceBetComponent.js -------------------------------------------------------------------------------- /src/prediction/components/PurgeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/components/PurgeComponent.js -------------------------------------------------------------------------------- /src/prediction/components/ResolveComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/components/ResolveComponent.js -------------------------------------------------------------------------------- /src/prediction/components/UserInfoComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/components/UserInfoComponent.js -------------------------------------------------------------------------------- /src/prediction/components/WaitComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/components/WaitComponent.js -------------------------------------------------------------------------------- /src/prediction/components/WithdrawComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/components/WithdrawComponent.js -------------------------------------------------------------------------------- /src/prediction/containers/PredictionComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/prediction/containers/PredictionComponent.js -------------------------------------------------------------------------------- /src/styles/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/styles/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/styles/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/styles/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/styles/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/styles/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/styles/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/styles/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/styles/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/styles/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/styles/index.css -------------------------------------------------------------------------------- /src/styles/themes/bootstrap-slate-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/styles/themes/bootstrap-slate-theme.css -------------------------------------------------------------------------------- /src/utils/DateUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/utils/DateUtil.js -------------------------------------------------------------------------------- /src/utils/MiscUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/utils/MiscUtil.js -------------------------------------------------------------------------------- /src/utils/PredictionState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/utils/PredictionState.js -------------------------------------------------------------------------------- /src/utils/Web3Util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/src/utils/Web3Util.js -------------------------------------------------------------------------------- /test/PredictionMarket_GeneralTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/test/PredictionMarket_GeneralTests.js -------------------------------------------------------------------------------- /test/Prediction_BetTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/test/Prediction_BetTests.js -------------------------------------------------------------------------------- /test/Prediction_GeneralTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/test/Prediction_GeneralTests.js -------------------------------------------------------------------------------- /test/Prediction_ResolveTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/test/Prediction_ResolveTests.js -------------------------------------------------------------------------------- /test/Prediction_WithdrawTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/test/Prediction_WithdrawTests.js -------------------------------------------------------------------------------- /test/sims/create_predictions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/test/sims/create_predictions.js -------------------------------------------------------------------------------- /test/utils/TestUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/test/utils/TestUtil.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZeppelinSolutions/tokenless/HEAD/truffle.js --------------------------------------------------------------------------------