├── .dockerignore ├── .github └── workflows │ ├── cf.yml │ └── docker.yml ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING ├── Dockerfile ├── Dockerfile.onchain ├── README.md ├── config-template.yaml ├── contracts ├── DApp.sol ├── DAppInterface.sol └── Migrations.sol ├── dapp ├── Cargo.lock ├── Cargo.toml ├── Cargo_cache.toml └── src │ ├── dapp.rs │ ├── lib.rs │ └── main.rs ├── dapp_data_0 ├── 0.json.br.cpio ├── 1.json └── 1.json.br.cpio ├── dapp_data_1 ├── 0.json.br.cpio ├── 1.json └── 1.json.br.cpio ├── data-template.json ├── deployer ├── Dockerfile ├── migrate.sh └── unlockAccount.js ├── dispatcher-entrypoint.sh ├── dispatcher-post.sh ├── docker-compose-template-geth.yml ├── docker-compose-template.yml ├── docker-compose.yml ├── geth ├── Dockerfile ├── entrypoint.sh └── genesis.jq ├── instantiate_tournaments.js ├── migrations ├── 1_initial_migration.js ├── 2_deploy_app.js └── 3_ens.js ├── package.json ├── truffle-config.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | .git 4 | **/target 5 | -------------------------------------------------------------------------------- /.github/workflows/cf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/.github/workflows/cf.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.onchain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/Dockerfile.onchain -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/README.md -------------------------------------------------------------------------------- /config-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/config-template.yaml -------------------------------------------------------------------------------- /contracts/DApp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/contracts/DApp.sol -------------------------------------------------------------------------------- /contracts/DAppInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/contracts/DAppInterface.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /dapp/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/dapp/Cargo.lock -------------------------------------------------------------------------------- /dapp/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/dapp/Cargo.toml -------------------------------------------------------------------------------- /dapp/Cargo_cache.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/dapp/Cargo_cache.toml -------------------------------------------------------------------------------- /dapp/src/dapp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/dapp/src/dapp.rs -------------------------------------------------------------------------------- /dapp/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/dapp/src/lib.rs -------------------------------------------------------------------------------- /dapp/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/dapp/src/main.rs -------------------------------------------------------------------------------- /dapp_data_0/0.json.br.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/dapp_data_0/0.json.br.cpio -------------------------------------------------------------------------------- /dapp_data_0/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/dapp_data_0/1.json -------------------------------------------------------------------------------- /dapp_data_0/1.json.br.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/dapp_data_0/1.json.br.cpio -------------------------------------------------------------------------------- /dapp_data_1/0.json.br.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/dapp_data_1/0.json.br.cpio -------------------------------------------------------------------------------- /dapp_data_1/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/dapp_data_1/1.json -------------------------------------------------------------------------------- /dapp_data_1/1.json.br.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/dapp_data_1/1.json.br.cpio -------------------------------------------------------------------------------- /data-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/data-template.json -------------------------------------------------------------------------------- /deployer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/deployer/Dockerfile -------------------------------------------------------------------------------- /deployer/migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/deployer/migrate.sh -------------------------------------------------------------------------------- /deployer/unlockAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/deployer/unlockAccount.js -------------------------------------------------------------------------------- /dispatcher-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/dispatcher-entrypoint.sh -------------------------------------------------------------------------------- /dispatcher-post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/dispatcher-post.sh -------------------------------------------------------------------------------- /docker-compose-template-geth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/docker-compose-template-geth.yml -------------------------------------------------------------------------------- /docker-compose-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/docker-compose-template.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /geth/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/geth/Dockerfile -------------------------------------------------------------------------------- /geth/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/geth/entrypoint.sh -------------------------------------------------------------------------------- /geth/genesis.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/geth/genesis.jq -------------------------------------------------------------------------------- /instantiate_tournaments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/instantiate_tournaments.js -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/migrations/2_deploy_app.js -------------------------------------------------------------------------------- /migrations/3_ens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/migrations/3_ens.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/package.json -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/truffle-config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesi/creepts-dapp/HEAD/yarn.lock --------------------------------------------------------------------------------