├── .gitattributes ├── .github └── stale.yml ├── .gitignore ├── LICENSE ├── README.md ├── box-img-lg.png ├── box-img-sm.png ├── bs-config.json ├── contracts └── Migrations.sol ├── migrations └── 1_initial_migration.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 │ └── scottish-terrier.jpeg ├── index.html ├── js │ ├── app.js │ ├── bootstrap.min.js │ ├── truffle-contract.js │ └── web3.min.js └── pets.json ├── test └── .gitkeep ├── truffle-box.json └── truffle-config.js /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/README.md -------------------------------------------------------------------------------- /box-img-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/box-img-lg.png -------------------------------------------------------------------------------- /box-img-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/box-img-sm.png -------------------------------------------------------------------------------- /bs-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/bs-config.json -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/package.json -------------------------------------------------------------------------------- /src/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/images/boxer.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/images/boxer.jpeg -------------------------------------------------------------------------------- /src/images/french-bulldog.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/images/french-bulldog.jpeg -------------------------------------------------------------------------------- /src/images/golden-retriever.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/images/golden-retriever.jpeg -------------------------------------------------------------------------------- /src/images/scottish-terrier.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/images/scottish-terrier.jpeg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/index.html -------------------------------------------------------------------------------- /src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/js/app.js -------------------------------------------------------------------------------- /src/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/js/truffle-contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/js/truffle-contract.js -------------------------------------------------------------------------------- /src/js/web3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/js/web3.min.js -------------------------------------------------------------------------------- /src/pets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/src/pets.json -------------------------------------------------------------------------------- /test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /truffle-box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/truffle-box.json -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConsenSys-archive/pet-shop-box/HEAD/truffle-config.js --------------------------------------------------------------------------------