├── .gitignore ├── LICENSE ├── README.md ├── client ├── .gitignore ├── config-overrides.js ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── AddMed.js │ ├── App.css │ ├── App.js │ ├── AssignRoles.js │ ├── Components │ └── Container.js │ ├── Home.js │ ├── Supply.js │ ├── Track.js │ ├── artifacts │ ├── Migrations.json │ └── SupplyChain.json │ └── index.js ├── contracts ├── Migrations.sol └── SupplyChain.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── truffle-config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/README.md -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/config-overrides.js -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/AddMed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/src/AddMed.js -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/AssignRoles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/src/AssignRoles.js -------------------------------------------------------------------------------- /client/src/Components/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/src/Components/Container.js -------------------------------------------------------------------------------- /client/src/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/src/Home.js -------------------------------------------------------------------------------- /client/src/Supply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/src/Supply.js -------------------------------------------------------------------------------- /client/src/Track.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/src/Track.js -------------------------------------------------------------------------------- /client/src/artifacts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/src/artifacts/Migrations.json -------------------------------------------------------------------------------- /client/src/artifacts/SupplyChain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/src/artifacts/SupplyChain.json -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/client/src/index.js -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/SupplyChain.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/contracts/SupplyChain.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/package.json -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/truffle-config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codetit4n/supply-chain-truffle-react/HEAD/yarn.lock --------------------------------------------------------------------------------