├── LICENSE ├── README.md ├── blockchain_interactions.js ├── contracts ├── Migrations.sol └── MindMathGame.sol ├── index.js ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── public ├── index.html ├── mindmath_token.png ├── sound_loose.wav ├── sound_win.wav └── web3.min.js ├── truffle-config.js └── truffle.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/MindMathGame/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/MindMathGame/HEAD/README.md -------------------------------------------------------------------------------- /blockchain_interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/MindMathGame/HEAD/blockchain_interactions.js -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/MindMathGame/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/MindMathGame.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/MindMathGame/HEAD/contracts/MindMathGame.sol -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/MindMathGame/HEAD/index.js -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/MindMathGame/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/MindMathGame/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/MindMathGame/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/MindMathGame/HEAD/public/index.html -------------------------------------------------------------------------------- /public/mindmath_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/MindMathGame/HEAD/public/mindmath_token.png -------------------------------------------------------------------------------- /public/sound_loose.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/MindMathGame/HEAD/public/sound_loose.wav -------------------------------------------------------------------------------- /public/sound_win.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/MindMathGame/HEAD/public/sound_win.wav -------------------------------------------------------------------------------- /public/web3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/MindMathGame/HEAD/public/web3.min.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/MindMathGame/HEAD/truffle-config.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/MindMathGame/HEAD/truffle.js --------------------------------------------------------------------------------