├── .babelrc ├── .env_example ├── .gitignore ├── migrations ├── 1_initial_migration.js └── 2_deploy.js ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── scripts └── script.js ├── src ├── components │ ├── App.css │ └── App.js ├── contracts │ ├── ContractName.sol │ └── Migrations.sol ├── index.js ├── logo.png └── serviceWorker.js ├── test ├── helpers.js └── test.js └── truffle-config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/.babelrc -------------------------------------------------------------------------------- /.env_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/.env_example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/.gitignore -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/migrations/2_deploy.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/public/manifest.json -------------------------------------------------------------------------------- /scripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/scripts/script.js -------------------------------------------------------------------------------- /src/components/App.css: -------------------------------------------------------------------------------- 1 | /* Styles go here */ 2 | -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/contracts/ContractName.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/src/contracts/ContractName.sol -------------------------------------------------------------------------------- /src/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/src/contracts/Migrations.sol -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/src/logo.png -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/test/helpers.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/test/test.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/dapp_template_v1/HEAD/truffle-config.js --------------------------------------------------------------------------------