├── Demo_FoodSafeClient ├── Foodsafe │ ├── build │ │ └── contracts │ │ │ ├── FoodSafe.json │ │ │ └── Migrations.json │ ├── contracts │ │ ├── Foodsafe.sol │ │ └── Migrations.sol │ ├── migrations │ │ ├── 1_initial_migration.js │ │ └── 2_deploy_contracts.js │ ├── package.json │ ├── server.js │ ├── truffle-config.js │ └── truffle.js └── FoodsafeClient │ ├── package.json │ ├── src │ ├── index.html │ └── index.js │ └── webpack.config.js ├── HelloWorld ├── build │ └── contracts │ │ ├── HelloWorld.json │ │ └── Migrations.json ├── contracts │ ├── HelloWorld.sol │ └── Migrations.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js ├── readme.md └── truffle-config.js ├── README.md └── ScoreStore ├── build └── contracts │ ├── Migrations.json │ └── ScoreStore.json ├── contracts ├── Migrations.sol └── ScoreStore.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── readme └── truffle-config.js /Demo_FoodSafeClient/Foodsafe/build/contracts/FoodSafe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/Demo_FoodSafeClient/Foodsafe/build/contracts/FoodSafe.json -------------------------------------------------------------------------------- /Demo_FoodSafeClient/Foodsafe/build/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/Demo_FoodSafeClient/Foodsafe/build/contracts/Migrations.json -------------------------------------------------------------------------------- /Demo_FoodSafeClient/Foodsafe/contracts/Foodsafe.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/Demo_FoodSafeClient/Foodsafe/contracts/Foodsafe.sol -------------------------------------------------------------------------------- /Demo_FoodSafeClient/Foodsafe/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/Demo_FoodSafeClient/Foodsafe/contracts/Migrations.sol -------------------------------------------------------------------------------- /Demo_FoodSafeClient/Foodsafe/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/Demo_FoodSafeClient/Foodsafe/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /Demo_FoodSafeClient/Foodsafe/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/Demo_FoodSafeClient/Foodsafe/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /Demo_FoodSafeClient/Foodsafe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/Demo_FoodSafeClient/Foodsafe/package.json -------------------------------------------------------------------------------- /Demo_FoodSafeClient/Foodsafe/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/Demo_FoodSafeClient/Foodsafe/server.js -------------------------------------------------------------------------------- /Demo_FoodSafeClient/Foodsafe/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/Demo_FoodSafeClient/Foodsafe/truffle-config.js -------------------------------------------------------------------------------- /Demo_FoodSafeClient/Foodsafe/truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/Demo_FoodSafeClient/Foodsafe/truffle.js -------------------------------------------------------------------------------- /Demo_FoodSafeClient/FoodsafeClient/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/Demo_FoodSafeClient/FoodsafeClient/package.json -------------------------------------------------------------------------------- /Demo_FoodSafeClient/FoodsafeClient/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/Demo_FoodSafeClient/FoodsafeClient/src/index.html -------------------------------------------------------------------------------- /Demo_FoodSafeClient/FoodsafeClient/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/Demo_FoodSafeClient/FoodsafeClient/src/index.js -------------------------------------------------------------------------------- /Demo_FoodSafeClient/FoodsafeClient/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/Demo_FoodSafeClient/FoodsafeClient/webpack.config.js -------------------------------------------------------------------------------- /HelloWorld/build/contracts/HelloWorld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/HelloWorld/build/contracts/HelloWorld.json -------------------------------------------------------------------------------- /HelloWorld/build/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/HelloWorld/build/contracts/Migrations.json -------------------------------------------------------------------------------- /HelloWorld/contracts/HelloWorld.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/HelloWorld/contracts/HelloWorld.sol -------------------------------------------------------------------------------- /HelloWorld/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/HelloWorld/contracts/Migrations.sol -------------------------------------------------------------------------------- /HelloWorld/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/HelloWorld/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /HelloWorld/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/HelloWorld/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /HelloWorld/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/HelloWorld/readme.md -------------------------------------------------------------------------------- /HelloWorld/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/HelloWorld/truffle-config.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/README.md -------------------------------------------------------------------------------- /ScoreStore/build/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/ScoreStore/build/contracts/Migrations.json -------------------------------------------------------------------------------- /ScoreStore/build/contracts/ScoreStore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/ScoreStore/build/contracts/ScoreStore.json -------------------------------------------------------------------------------- /ScoreStore/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/ScoreStore/contracts/Migrations.sol -------------------------------------------------------------------------------- /ScoreStore/contracts/ScoreStore.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/ScoreStore/contracts/ScoreStore.sol -------------------------------------------------------------------------------- /ScoreStore/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/ScoreStore/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /ScoreStore/migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/ScoreStore/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /ScoreStore/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/ScoreStore/readme -------------------------------------------------------------------------------- /ScoreStore/truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loiane/blockchain-examples/HEAD/ScoreStore/truffle-config.js --------------------------------------------------------------------------------