├── .gitignore ├── .solcover.js ├── .soliumignore ├── .soliumrc.json ├── .travis.yml ├── LICENSE ├── README.md ├── arapp.json ├── contracts ├── Tollgate.sol ├── examples │ └── TollgateKit.sol └── test │ ├── TestImports.sol │ └── mocks │ └── ExecutionTarget.sol ├── manifest.json ├── migrations └── 1_initial_migration.js ├── package.json ├── test ├── helpers │ └── numbers.js └── tollgate.js └── truffle-config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragonone/tollgate/HEAD/.gitignore -------------------------------------------------------------------------------- /.solcover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragonone/tollgate/HEAD/.solcover.js -------------------------------------------------------------------------------- /.soliumignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragonone/tollgate/HEAD/.soliumrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragonone/tollgate/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragonone/tollgate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragonone/tollgate/HEAD/README.md -------------------------------------------------------------------------------- /arapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragonone/tollgate/HEAD/arapp.json -------------------------------------------------------------------------------- /contracts/Tollgate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragonone/tollgate/HEAD/contracts/Tollgate.sol -------------------------------------------------------------------------------- /contracts/examples/TollgateKit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragonone/tollgate/HEAD/contracts/examples/TollgateKit.sol -------------------------------------------------------------------------------- /contracts/test/TestImports.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragonone/tollgate/HEAD/contracts/test/TestImports.sol -------------------------------------------------------------------------------- /contracts/test/mocks/ExecutionTarget.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragonone/tollgate/HEAD/contracts/test/mocks/ExecutionTarget.sol -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragonone/tollgate/HEAD/manifest.json -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragonone/tollgate/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragonone/tollgate/HEAD/package.json -------------------------------------------------------------------------------- /test/helpers/numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragonone/tollgate/HEAD/test/helpers/numbers.js -------------------------------------------------------------------------------- /test/tollgate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragonone/tollgate/HEAD/test/tollgate.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- 1 | module.exports = require("@aragon/os/truffle-config") 2 | --------------------------------------------------------------------------------