├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitlab-ci.yml ├── .solcover.js ├── README.md ├── app ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── MyComponent.js │ ├── MyContainer.js │ ├── drizzleOptions.js │ ├── index.css │ ├── index.js │ ├── logo.png │ └── serviceWorker.js └── yarn.lock ├── bitbucket-pipelines.yml ├── contracts ├── Migrations.sol └── mocks │ └── DaiMock.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── test └── myTest.js └── truffle-config.js /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.solcover.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | mocha: { reporter: 'spec' } 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/README.md -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/package.json -------------------------------------------------------------------------------- /app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/public/favicon.ico -------------------------------------------------------------------------------- /app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/public/index.html -------------------------------------------------------------------------------- /app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/public/manifest.json -------------------------------------------------------------------------------- /app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/src/App.css -------------------------------------------------------------------------------- /app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/src/App.js -------------------------------------------------------------------------------- /app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/src/App.test.js -------------------------------------------------------------------------------- /app/src/MyComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/src/MyComponent.js -------------------------------------------------------------------------------- /app/src/MyContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/src/MyContainer.js -------------------------------------------------------------------------------- /app/src/drizzleOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/src/drizzleOptions.js -------------------------------------------------------------------------------- /app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/src/index.css -------------------------------------------------------------------------------- /app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/src/index.js -------------------------------------------------------------------------------- /app/src/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/src/logo.png -------------------------------------------------------------------------------- /app/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/src/serviceWorker.js -------------------------------------------------------------------------------- /app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/app/yarn.lock -------------------------------------------------------------------------------- /bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/mocks/DaiMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/contracts/mocks/DaiMock.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /test/myTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/test/myTest.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jklepatch/defi-dapp-starter-kit/HEAD/truffle-config.js --------------------------------------------------------------------------------