├── .gitignore ├── LICENSE ├── README.md ├── app ├── app.js ├── index.html └── script.js ├── arapp.json ├── contracts ├── Counter.sol └── misc │ └── Migrations.sol ├── manifest.json ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── scripts └── deploy.js ├── test └── Counter.js └── truffle.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/aragon-example-application/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/aragon-example-application/HEAD/README.md -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/aragon-example-application/HEAD/app/app.js -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/aragon-example-application/HEAD/app/index.html -------------------------------------------------------------------------------- /app/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/aragon-example-application/HEAD/app/script.js -------------------------------------------------------------------------------- /arapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/aragon-example-application/HEAD/arapp.json -------------------------------------------------------------------------------- /contracts/Counter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/aragon-example-application/HEAD/contracts/Counter.sol -------------------------------------------------------------------------------- /contracts/misc/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/aragon-example-application/HEAD/contracts/misc/Migrations.sol -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/aragon-example-application/HEAD/manifest.json -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/aragon-example-application/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/aragon-example-application/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/aragon-example-application/HEAD/package.json -------------------------------------------------------------------------------- /scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/aragon-example-application/HEAD/scripts/deploy.js -------------------------------------------------------------------------------- /test/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/aragon-example-application/HEAD/test/Counter.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/aragon-example-application/HEAD/truffle.js --------------------------------------------------------------------------------