├── .editorconfig ├── .eslintrc.yml ├── .gitignore ├── .gitmodules ├── .soliumignore ├── .soliumrc.json ├── .travis.yml ├── CONTRIBUTION.md ├── LICENSE ├── README.md ├── bin ├── parity.sh ├── preprocess.js ├── select-resources.js └── testrpc.js ├── ci-cd ├── Dockerfile ├── MultiSigWallet.json ├── deploy-docker.sh ├── deploy.sh ├── keys.tar.enc ├── sendFunds.js ├── set-contract-address.js └── travis-testrpc.sh ├── contracts ├── FlightDelayAccessController.sol ├── FlightDelayAccessControllerInterface.sol ├── FlightDelayAddressResolver.sol ├── FlightDelayConstants.sol ├── FlightDelayControlledContract.sol ├── FlightDelayController.sol ├── FlightDelayControllerInterface.sol ├── FlightDelayDatabase.sol ├── FlightDelayDatabaseInterface.sol ├── FlightDelayDatabaseModel.sol ├── FlightDelayLedger.sol ├── FlightDelayLedgerInterface.sol ├── FlightDelayNewPolicy.sol ├── FlightDelayOraclizeInterface.sol ├── FlightDelayPayout.sol ├── FlightDelayPayoutInterface.sol ├── FlightDelayUnderwrite.sol ├── FlightDelayUnderwriteInterface.sol ├── Migrations.sol ├── Owned.sol └── convertLib.sol ├── deployment.js ├── external └── encryptedQuery │ └── createEncryptedQuery.sh ├── migrations-available ├── 1_initial_migration.js ├── 299_deploy_finish.js ├── 302_deploy_Other.js ├── 401_deploy_AddressResolver.js ├── 501_deploy_FlightDelayController.js ├── 502_deploy_FlightDelayAccessController.js ├── 503_deploy_FlightDelayDatabase.js ├── 504_deploy_FlightDelayLedger.js ├── 505_deploy_FlightDelayNewPolicy.js ├── 506_deploy_FlightDelayUnderwrite.js ├── 507_deploy_FlightDelayPayout.js ├── 510_deploy_registerContracts.js ├── 510_deploy_transferOwnership.js ├── 511_deploy_setAllContracts.js ├── 900_deploy_set_contracts.js ├── 901_deploy_fund_contracts.js ├── 910_deploy_set_contracts.js ├── 920_read_ACL.js └── 999_deploy_show_contracts.js ├── migrations └── .keep ├── package.json ├── resources.yml ├── test-available ├── FlightDelayNewPolicy_Suite.js ├── Test_Deploy.js ├── Test_Destruct.js ├── Test_FlightDelayAccessController.js ├── Test_FlightDelayAddressResolver.js ├── Test_FlightDelayController.js ├── Test_FlightDelayDatabase.js ├── Test_FlightDelayDatabase.sol ├── Test_FlightDelayLedger.js ├── Test_FlightDelayLedger.sol ├── Test_FlightDelayNewPolicy.js ├── Test_FlightDelayOraclize.js ├── Test_FlightDelayPayout.js ├── Test_FlightDelayUnderwrite.js ├── Test_Oraclize.js ├── Test_Production.js ├── _Test_Oraclize.sol ├── helpers.js └── logformatter.js ├── test └── .keep ├── truffle.js ├── util ├── logger.js ├── scanchain.js └── test-utils.js └── vendors ├── strings.sol └── usingOraclize.sol /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/.gitmodules -------------------------------------------------------------------------------- /.soliumignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | contracts 3 | test 4 | external 5 | -------------------------------------------------------------------------------- /.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/.soliumrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/CONTRIBUTION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/README.md -------------------------------------------------------------------------------- /bin/parity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/bin/parity.sh -------------------------------------------------------------------------------- /bin/preprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/bin/preprocess.js -------------------------------------------------------------------------------- /bin/select-resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/bin/select-resources.js -------------------------------------------------------------------------------- /bin/testrpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/bin/testrpc.js -------------------------------------------------------------------------------- /ci-cd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/ci-cd/Dockerfile -------------------------------------------------------------------------------- /ci-cd/MultiSigWallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/ci-cd/MultiSigWallet.json -------------------------------------------------------------------------------- /ci-cd/deploy-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/ci-cd/deploy-docker.sh -------------------------------------------------------------------------------- /ci-cd/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/ci-cd/deploy.sh -------------------------------------------------------------------------------- /ci-cd/keys.tar.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/ci-cd/keys.tar.enc -------------------------------------------------------------------------------- /ci-cd/sendFunds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/ci-cd/sendFunds.js -------------------------------------------------------------------------------- /ci-cd/set-contract-address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/ci-cd/set-contract-address.js -------------------------------------------------------------------------------- /ci-cd/travis-testrpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/ci-cd/travis-testrpc.sh -------------------------------------------------------------------------------- /contracts/FlightDelayAccessController.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayAccessController.sol -------------------------------------------------------------------------------- /contracts/FlightDelayAccessControllerInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayAccessControllerInterface.sol -------------------------------------------------------------------------------- /contracts/FlightDelayAddressResolver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayAddressResolver.sol -------------------------------------------------------------------------------- /contracts/FlightDelayConstants.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayConstants.sol -------------------------------------------------------------------------------- /contracts/FlightDelayControlledContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayControlledContract.sol -------------------------------------------------------------------------------- /contracts/FlightDelayController.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayController.sol -------------------------------------------------------------------------------- /contracts/FlightDelayControllerInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayControllerInterface.sol -------------------------------------------------------------------------------- /contracts/FlightDelayDatabase.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayDatabase.sol -------------------------------------------------------------------------------- /contracts/FlightDelayDatabaseInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayDatabaseInterface.sol -------------------------------------------------------------------------------- /contracts/FlightDelayDatabaseModel.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayDatabaseModel.sol -------------------------------------------------------------------------------- /contracts/FlightDelayLedger.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayLedger.sol -------------------------------------------------------------------------------- /contracts/FlightDelayLedgerInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayLedgerInterface.sol -------------------------------------------------------------------------------- /contracts/FlightDelayNewPolicy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayNewPolicy.sol -------------------------------------------------------------------------------- /contracts/FlightDelayOraclizeInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayOraclizeInterface.sol -------------------------------------------------------------------------------- /contracts/FlightDelayPayout.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayPayout.sol -------------------------------------------------------------------------------- /contracts/FlightDelayPayoutInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayPayoutInterface.sol -------------------------------------------------------------------------------- /contracts/FlightDelayUnderwrite.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayUnderwrite.sol -------------------------------------------------------------------------------- /contracts/FlightDelayUnderwriteInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/FlightDelayUnderwriteInterface.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/Owned.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/Owned.sol -------------------------------------------------------------------------------- /contracts/convertLib.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/contracts/convertLib.sol -------------------------------------------------------------------------------- /deployment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/deployment.js -------------------------------------------------------------------------------- /external/encryptedQuery/createEncryptedQuery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/external/encryptedQuery/createEncryptedQuery.sh -------------------------------------------------------------------------------- /migrations-available/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/1_initial_migration.js -------------------------------------------------------------------------------- /migrations-available/299_deploy_finish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/299_deploy_finish.js -------------------------------------------------------------------------------- /migrations-available/302_deploy_Other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/302_deploy_Other.js -------------------------------------------------------------------------------- /migrations-available/401_deploy_AddressResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/401_deploy_AddressResolver.js -------------------------------------------------------------------------------- /migrations-available/501_deploy_FlightDelayController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/501_deploy_FlightDelayController.js -------------------------------------------------------------------------------- /migrations-available/502_deploy_FlightDelayAccessController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/502_deploy_FlightDelayAccessController.js -------------------------------------------------------------------------------- /migrations-available/503_deploy_FlightDelayDatabase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/503_deploy_FlightDelayDatabase.js -------------------------------------------------------------------------------- /migrations-available/504_deploy_FlightDelayLedger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/504_deploy_FlightDelayLedger.js -------------------------------------------------------------------------------- /migrations-available/505_deploy_FlightDelayNewPolicy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/505_deploy_FlightDelayNewPolicy.js -------------------------------------------------------------------------------- /migrations-available/506_deploy_FlightDelayUnderwrite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/506_deploy_FlightDelayUnderwrite.js -------------------------------------------------------------------------------- /migrations-available/507_deploy_FlightDelayPayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/507_deploy_FlightDelayPayout.js -------------------------------------------------------------------------------- /migrations-available/510_deploy_registerContracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/510_deploy_registerContracts.js -------------------------------------------------------------------------------- /migrations-available/510_deploy_transferOwnership.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/510_deploy_transferOwnership.js -------------------------------------------------------------------------------- /migrations-available/511_deploy_setAllContracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/511_deploy_setAllContracts.js -------------------------------------------------------------------------------- /migrations-available/900_deploy_set_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/900_deploy_set_contracts.js -------------------------------------------------------------------------------- /migrations-available/901_deploy_fund_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/901_deploy_fund_contracts.js -------------------------------------------------------------------------------- /migrations-available/910_deploy_set_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/910_deploy_set_contracts.js -------------------------------------------------------------------------------- /migrations-available/920_read_ACL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/920_read_ACL.js -------------------------------------------------------------------------------- /migrations-available/999_deploy_show_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/migrations-available/999_deploy_show_contracts.js -------------------------------------------------------------------------------- /migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/package.json -------------------------------------------------------------------------------- /resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/resources.yml -------------------------------------------------------------------------------- /test-available/FlightDelayNewPolicy_Suite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/FlightDelayNewPolicy_Suite.js -------------------------------------------------------------------------------- /test-available/Test_Deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/Test_Deploy.js -------------------------------------------------------------------------------- /test-available/Test_Destruct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/Test_Destruct.js -------------------------------------------------------------------------------- /test-available/Test_FlightDelayAccessController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/Test_FlightDelayAccessController.js -------------------------------------------------------------------------------- /test-available/Test_FlightDelayAddressResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/Test_FlightDelayAddressResolver.js -------------------------------------------------------------------------------- /test-available/Test_FlightDelayController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/Test_FlightDelayController.js -------------------------------------------------------------------------------- /test-available/Test_FlightDelayDatabase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/Test_FlightDelayDatabase.js -------------------------------------------------------------------------------- /test-available/Test_FlightDelayDatabase.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/Test_FlightDelayDatabase.sol -------------------------------------------------------------------------------- /test-available/Test_FlightDelayLedger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/Test_FlightDelayLedger.js -------------------------------------------------------------------------------- /test-available/Test_FlightDelayLedger.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/Test_FlightDelayLedger.sol -------------------------------------------------------------------------------- /test-available/Test_FlightDelayNewPolicy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/Test_FlightDelayNewPolicy.js -------------------------------------------------------------------------------- /test-available/Test_FlightDelayOraclize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/Test_FlightDelayOraclize.js -------------------------------------------------------------------------------- /test-available/Test_FlightDelayPayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/Test_FlightDelayPayout.js -------------------------------------------------------------------------------- /test-available/Test_FlightDelayUnderwrite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/Test_FlightDelayUnderwrite.js -------------------------------------------------------------------------------- /test-available/Test_Oraclize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/Test_Oraclize.js -------------------------------------------------------------------------------- /test-available/Test_Production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/Test_Production.js -------------------------------------------------------------------------------- /test-available/_Test_Oraclize.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/_Test_Oraclize.sol -------------------------------------------------------------------------------- /test-available/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/helpers.js -------------------------------------------------------------------------------- /test-available/logformatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/test-available/logformatter.js -------------------------------------------------------------------------------- /test/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/truffle.js -------------------------------------------------------------------------------- /util/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/util/logger.js -------------------------------------------------------------------------------- /util/scanchain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/util/scanchain.js -------------------------------------------------------------------------------- /util/test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/util/test-utils.js -------------------------------------------------------------------------------- /vendors/strings.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/vendors/strings.sol -------------------------------------------------------------------------------- /vendors/usingOraclize.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherisc-legacy/flightDelay-legacy/HEAD/vendors/usingOraclize.sol --------------------------------------------------------------------------------