├── .env.sample ├── .gitattributes ├── .gitignore ├── .solcover.js ├── Dockerfile ├── Makefile ├── README.md ├── abi ├── .gitkeep ├── Dashboard.json ├── Game.json └── Token.json ├── brownie-config.yaml ├── contracts ├── Dashboard.sol ├── Migrations.sol ├── Token.sol ├── Valut.sol └── games │ ├── Dice.sol │ ├── Game.sol │ └── Slots.sol ├── docker-compose.yml ├── interfaces ├── IDashboard.sol ├── IGame.sol ├── IToken.sol └── IVault.sol ├── migrations ├── 1_initial_migration.js └── config │ └── global.js ├── package.json ├── scripts ├── .gitignore ├── contracts.json.sample └── extract_abi.js └── truffle.js /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/.gitignore -------------------------------------------------------------------------------- /.solcover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/.solcover.js -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/README.md -------------------------------------------------------------------------------- /abi/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /abi/Dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/abi/Dashboard.json -------------------------------------------------------------------------------- /abi/Game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/abi/Game.json -------------------------------------------------------------------------------- /abi/Token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/abi/Token.json -------------------------------------------------------------------------------- /brownie-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/brownie-config.yaml -------------------------------------------------------------------------------- /contracts/Dashboard.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/contracts/Dashboard.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/contracts/Token.sol -------------------------------------------------------------------------------- /contracts/Valut.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/contracts/Valut.sol -------------------------------------------------------------------------------- /contracts/games/Dice.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/contracts/games/Dice.sol -------------------------------------------------------------------------------- /contracts/games/Game.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/contracts/games/Game.sol -------------------------------------------------------------------------------- /contracts/games/Slots.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/contracts/games/Slots.sol -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /interfaces/IDashboard.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/interfaces/IDashboard.sol -------------------------------------------------------------------------------- /interfaces/IGame.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/interfaces/IGame.sol -------------------------------------------------------------------------------- /interfaces/IToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/interfaces/IToken.sol -------------------------------------------------------------------------------- /interfaces/IVault.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/interfaces/IVault.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/config/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/migrations/config/global.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/package.json -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | contracts.json 2 | -------------------------------------------------------------------------------- /scripts/contracts.json.sample: -------------------------------------------------------------------------------- 1 | [ 2 | // contract names here 3 | ] 4 | -------------------------------------------------------------------------------- /scripts/extract_abi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/scripts/extract_abi.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc01/crypto-casino-games/HEAD/truffle.js --------------------------------------------------------------------------------