├── README.md ├── contracts ├── Migrations.sol ├── PathsController.sol └── PathsDB.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── test ├── TestPathsController.sol ├── TestPathsDB.sol ├── pathsController.js └── pathsDB.js └── truffle.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanbennett/sourcery/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanbennett/sourcery/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/PathsController.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanbennett/sourcery/HEAD/contracts/PathsController.sol -------------------------------------------------------------------------------- /contracts/PathsDB.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanbennett/sourcery/HEAD/contracts/PathsDB.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanbennett/sourcery/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanbennett/sourcery/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /test/TestPathsController.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanbennett/sourcery/HEAD/test/TestPathsController.sol -------------------------------------------------------------------------------- /test/TestPathsDB.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanbennett/sourcery/HEAD/test/TestPathsDB.sol -------------------------------------------------------------------------------- /test/pathsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanbennett/sourcery/HEAD/test/pathsController.js -------------------------------------------------------------------------------- /test/pathsDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanbennett/sourcery/HEAD/test/pathsDB.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanbennett/sourcery/HEAD/truffle.js --------------------------------------------------------------------------------