├── README.md ├── box-img-lg.png ├── box-img-sm.png ├── bs-config.json ├── contracts ├── .gitkeep ├── Adoption.sol └── Migrations.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── src ├── css │ ├── bootstrap.min.css │ └── bootstrap.min.css.map ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── boxer.jpeg │ ├── french-bulldog.jpeg │ ├── golden-retriever.jpeg │ ├── pet-shop.png │ └── scottish-terrier.jpeg ├── index.html ├── js │ ├── app.js │ ├── bootstrap.min.js │ ├── truffle-contract.js │ └── web3.min.js └── pets.json ├── test ├── .gitkeep └── TestAdoption.sol └── truffle.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/README.md -------------------------------------------------------------------------------- /box-img-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/box-img-lg.png -------------------------------------------------------------------------------- /box-img-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/box-img-sm.png -------------------------------------------------------------------------------- /bs-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/bs-config.json -------------------------------------------------------------------------------- /contracts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contracts/Adoption.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/contracts/Adoption.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/package.json -------------------------------------------------------------------------------- /src/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/images/boxer.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/images/boxer.jpeg -------------------------------------------------------------------------------- /src/images/french-bulldog.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/images/french-bulldog.jpeg -------------------------------------------------------------------------------- /src/images/golden-retriever.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/images/golden-retriever.jpeg -------------------------------------------------------------------------------- /src/images/pet-shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/images/pet-shop.png -------------------------------------------------------------------------------- /src/images/scottish-terrier.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/images/scottish-terrier.jpeg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/index.html -------------------------------------------------------------------------------- /src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/js/app.js -------------------------------------------------------------------------------- /src/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/js/truffle-contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/js/truffle-contract.js -------------------------------------------------------------------------------- /src/js/web3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/js/web3.min.js -------------------------------------------------------------------------------- /src/pets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/src/pets.json -------------------------------------------------------------------------------- /test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/TestAdoption.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/test/TestAdoption.sol -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anda0109/pet-shop/HEAD/truffle.js --------------------------------------------------------------------------------