├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .soliumignore ├── .soliumrc.json ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── .eslintrc ├── .gitignore ├── README.md ├── config-overrides.js ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── icon.ico │ ├── images │ │ ├── approved.svg │ │ ├── delete.svg │ │ ├── ethereum.svg │ │ ├── favorite-lock.svg │ │ ├── favorite.svg │ │ ├── github.svg │ │ ├── muna.png │ │ ├── no-img.svg │ │ ├── pending.svg │ │ └── unapproved.svg │ ├── index.html │ └── manifest.json ├── src │ ├── App.js │ ├── api │ │ └── index.js │ ├── artifacts │ │ └── .gitkeep │ ├── assets │ │ └── images │ │ │ └── newrecipe_background.svg │ ├── components │ │ ├── BallBeatLoader.css │ │ ├── BlockingLoader.css │ │ ├── BlockingLoader.js │ │ ├── CraftableTokenCard.css │ │ ├── CraftableTokenCard.js │ │ ├── CraftableTokenFeed.css │ │ ├── CraftableTokenFeed.js │ │ ├── CraftingIngredientRow.js │ │ ├── Emoji.js │ │ ├── EmptyState.js │ │ ├── FileInput.js │ │ ├── Footer.css │ │ ├── Footer.js │ │ ├── Header.css │ │ ├── Header.js │ │ ├── Input.js │ │ ├── InputTokenField.css │ │ ├── InputTokenField.js │ │ ├── Loader.css │ │ ├── Loader.js │ │ ├── NavBar.css │ │ ├── Navbar.js │ │ ├── PacmanLoader.css │ │ ├── SectionHeader.css │ │ ├── SectionHeader.js │ │ ├── SectionLoader.js │ │ ├── Subtitle.css │ │ ├── Subtitle.js │ │ ├── Switch.js │ │ ├── Tetris.css │ │ └── WithWeb3Context.js │ ├── featured.json │ ├── forms │ │ ├── BuildRecipe.js │ │ └── CraftCraftable.js │ ├── index.css │ ├── index.js │ ├── models │ │ ├── CraftableToken.js │ │ ├── Crafty.js │ │ ├── ERC20.js │ │ └── ExtendedERC20.js │ ├── pages │ │ ├── BuildRecipePage.js │ │ ├── CraftableTokenPage.js │ │ ├── DiscoverPage.js │ │ ├── IndexPage.js │ │ └── ShowcasePage.js │ ├── registerServiceWorker.js │ ├── store │ │ ├── ConfigStore.js │ │ ├── DomainStore.js │ │ ├── RootStore.js │ │ ├── UIStore.js │ │ ├── Web3ContextStore.js │ │ ├── config.example.json │ │ └── config.json │ └── util.js ├── tsconfig.json └── yarn.lock ├── backend ├── .chalice │ └── config.json ├── .gitignore └── app.py ├── bin ├── app.sh ├── build-app.sh ├── build.sh ├── copy-artifacts.sh └── deploy.sh ├── contracts ├── CraftableToken.sol ├── Crafty.sol ├── DetailedMintableToken.sol ├── ExtendedERC20.sol └── Migrations.sol ├── deploy ├── assets │ ├── air.png │ ├── bitcoin.png │ ├── earth.png │ ├── emoji-tokens.json │ ├── energy.png │ ├── ethereum.png │ ├── fire.png │ ├── idea.png │ ├── money.png │ ├── poop.png │ ├── rock.png │ ├── time.png │ ├── tools.png │ └── water.png └── deploy.js ├── env.sample ├── migrations └── 1_initial_migration.js ├── package.json ├── test ├── CraftableToken.js ├── Crafty.js ├── helpers │ └── expectPromiseThrow.js └── lint.js ├── truffle.js ├── zos.json ├── zos.mainnet.json └── zos.ropsten.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/.gitignore -------------------------------------------------------------------------------- /.soliumignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/.soliumrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/README.md -------------------------------------------------------------------------------- /app/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/.eslintrc -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/README.md -------------------------------------------------------------------------------- /app/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/config-overrides.js -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/package.json -------------------------------------------------------------------------------- /app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/public/favicon.ico -------------------------------------------------------------------------------- /app/public/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/public/icon.ico -------------------------------------------------------------------------------- /app/public/images/approved.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/public/images/approved.svg -------------------------------------------------------------------------------- /app/public/images/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/public/images/delete.svg -------------------------------------------------------------------------------- /app/public/images/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/public/images/ethereum.svg -------------------------------------------------------------------------------- /app/public/images/favorite-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/public/images/favorite-lock.svg -------------------------------------------------------------------------------- /app/public/images/favorite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/public/images/favorite.svg -------------------------------------------------------------------------------- /app/public/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/public/images/github.svg -------------------------------------------------------------------------------- /app/public/images/muna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/public/images/muna.png -------------------------------------------------------------------------------- /app/public/images/no-img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/public/images/no-img.svg -------------------------------------------------------------------------------- /app/public/images/pending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/public/images/pending.svg -------------------------------------------------------------------------------- /app/public/images/unapproved.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/public/images/unapproved.svg -------------------------------------------------------------------------------- /app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/public/index.html -------------------------------------------------------------------------------- /app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/public/manifest.json -------------------------------------------------------------------------------- /app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/App.js -------------------------------------------------------------------------------- /app/src/api/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/artifacts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/assets/images/newrecipe_background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/assets/images/newrecipe_background.svg -------------------------------------------------------------------------------- /app/src/components/BallBeatLoader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/BallBeatLoader.css -------------------------------------------------------------------------------- /app/src/components/BlockingLoader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/BlockingLoader.css -------------------------------------------------------------------------------- /app/src/components/BlockingLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/BlockingLoader.js -------------------------------------------------------------------------------- /app/src/components/CraftableTokenCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/CraftableTokenCard.css -------------------------------------------------------------------------------- /app/src/components/CraftableTokenCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/CraftableTokenCard.js -------------------------------------------------------------------------------- /app/src/components/CraftableTokenFeed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/CraftableTokenFeed.css -------------------------------------------------------------------------------- /app/src/components/CraftableTokenFeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/CraftableTokenFeed.js -------------------------------------------------------------------------------- /app/src/components/CraftingIngredientRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/CraftingIngredientRow.js -------------------------------------------------------------------------------- /app/src/components/Emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/Emoji.js -------------------------------------------------------------------------------- /app/src/components/EmptyState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/EmptyState.js -------------------------------------------------------------------------------- /app/src/components/FileInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/FileInput.js -------------------------------------------------------------------------------- /app/src/components/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/Footer.css -------------------------------------------------------------------------------- /app/src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/Footer.js -------------------------------------------------------------------------------- /app/src/components/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/Header.css -------------------------------------------------------------------------------- /app/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/Header.js -------------------------------------------------------------------------------- /app/src/components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/Input.js -------------------------------------------------------------------------------- /app/src/components/InputTokenField.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/InputTokenField.css -------------------------------------------------------------------------------- /app/src/components/InputTokenField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/InputTokenField.js -------------------------------------------------------------------------------- /app/src/components/Loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/Loader.css -------------------------------------------------------------------------------- /app/src/components/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/Loader.js -------------------------------------------------------------------------------- /app/src/components/NavBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/NavBar.css -------------------------------------------------------------------------------- /app/src/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/Navbar.js -------------------------------------------------------------------------------- /app/src/components/PacmanLoader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/PacmanLoader.css -------------------------------------------------------------------------------- /app/src/components/SectionHeader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/SectionHeader.css -------------------------------------------------------------------------------- /app/src/components/SectionHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/SectionHeader.js -------------------------------------------------------------------------------- /app/src/components/SectionLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/SectionLoader.js -------------------------------------------------------------------------------- /app/src/components/Subtitle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/Subtitle.css -------------------------------------------------------------------------------- /app/src/components/Subtitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/Subtitle.js -------------------------------------------------------------------------------- /app/src/components/Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/Switch.js -------------------------------------------------------------------------------- /app/src/components/Tetris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/Tetris.css -------------------------------------------------------------------------------- /app/src/components/WithWeb3Context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/components/WithWeb3Context.js -------------------------------------------------------------------------------- /app/src/featured.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ] 4 | -------------------------------------------------------------------------------- /app/src/forms/BuildRecipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/forms/BuildRecipe.js -------------------------------------------------------------------------------- /app/src/forms/CraftCraftable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/forms/CraftCraftable.js -------------------------------------------------------------------------------- /app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/index.css -------------------------------------------------------------------------------- /app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/index.js -------------------------------------------------------------------------------- /app/src/models/CraftableToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/models/CraftableToken.js -------------------------------------------------------------------------------- /app/src/models/Crafty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/models/Crafty.js -------------------------------------------------------------------------------- /app/src/models/ERC20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/models/ERC20.js -------------------------------------------------------------------------------- /app/src/models/ExtendedERC20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/models/ExtendedERC20.js -------------------------------------------------------------------------------- /app/src/pages/BuildRecipePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/pages/BuildRecipePage.js -------------------------------------------------------------------------------- /app/src/pages/CraftableTokenPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/pages/CraftableTokenPage.js -------------------------------------------------------------------------------- /app/src/pages/DiscoverPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/pages/DiscoverPage.js -------------------------------------------------------------------------------- /app/src/pages/IndexPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/pages/IndexPage.js -------------------------------------------------------------------------------- /app/src/pages/ShowcasePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/pages/ShowcasePage.js -------------------------------------------------------------------------------- /app/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/registerServiceWorker.js -------------------------------------------------------------------------------- /app/src/store/ConfigStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/store/ConfigStore.js -------------------------------------------------------------------------------- /app/src/store/DomainStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/store/DomainStore.js -------------------------------------------------------------------------------- /app/src/store/RootStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/store/RootStore.js -------------------------------------------------------------------------------- /app/src/store/UIStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/store/UIStore.js -------------------------------------------------------------------------------- /app/src/store/Web3ContextStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/store/Web3ContextStore.js -------------------------------------------------------------------------------- /app/src/store/config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/store/config.example.json -------------------------------------------------------------------------------- /app/src/store/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/store/config.json -------------------------------------------------------------------------------- /app/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/src/util.js -------------------------------------------------------------------------------- /app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/tsconfig.json -------------------------------------------------------------------------------- /app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/app/yarn.lock -------------------------------------------------------------------------------- /backend/.chalice/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/backend/.chalice/config.json -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/backend/app.py -------------------------------------------------------------------------------- /bin/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/bin/app.sh -------------------------------------------------------------------------------- /bin/build-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/bin/build-app.sh -------------------------------------------------------------------------------- /bin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/bin/build.sh -------------------------------------------------------------------------------- /bin/copy-artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/bin/copy-artifacts.sh -------------------------------------------------------------------------------- /bin/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/bin/deploy.sh -------------------------------------------------------------------------------- /contracts/CraftableToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/contracts/CraftableToken.sol -------------------------------------------------------------------------------- /contracts/Crafty.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/contracts/Crafty.sol -------------------------------------------------------------------------------- /contracts/DetailedMintableToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/contracts/DetailedMintableToken.sol -------------------------------------------------------------------------------- /contracts/ExtendedERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/contracts/ExtendedERC20.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- 1 | pragma solidity ^0.4.17; 2 | 3 | 4 | contract Migrations { 5 | } 6 | -------------------------------------------------------------------------------- /deploy/assets/air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/deploy/assets/air.png -------------------------------------------------------------------------------- /deploy/assets/bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/deploy/assets/bitcoin.png -------------------------------------------------------------------------------- /deploy/assets/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/deploy/assets/earth.png -------------------------------------------------------------------------------- /deploy/assets/emoji-tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/deploy/assets/emoji-tokens.json -------------------------------------------------------------------------------- /deploy/assets/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/deploy/assets/energy.png -------------------------------------------------------------------------------- /deploy/assets/ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/deploy/assets/ethereum.png -------------------------------------------------------------------------------- /deploy/assets/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/deploy/assets/fire.png -------------------------------------------------------------------------------- /deploy/assets/idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/deploy/assets/idea.png -------------------------------------------------------------------------------- /deploy/assets/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/deploy/assets/money.png -------------------------------------------------------------------------------- /deploy/assets/poop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/deploy/assets/poop.png -------------------------------------------------------------------------------- /deploy/assets/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/deploy/assets/rock.png -------------------------------------------------------------------------------- /deploy/assets/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/deploy/assets/time.png -------------------------------------------------------------------------------- /deploy/assets/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/deploy/assets/tools.png -------------------------------------------------------------------------------- /deploy/assets/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/deploy/assets/water.png -------------------------------------------------------------------------------- /deploy/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/deploy/deploy.js -------------------------------------------------------------------------------- /env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/env.sample -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/package.json -------------------------------------------------------------------------------- /test/CraftableToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/test/CraftableToken.js -------------------------------------------------------------------------------- /test/Crafty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/test/Crafty.js -------------------------------------------------------------------------------- /test/helpers/expectPromiseThrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/test/helpers/expectPromiseThrow.js -------------------------------------------------------------------------------- /test/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/test/lint.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/truffle.js -------------------------------------------------------------------------------- /zos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/zos.json -------------------------------------------------------------------------------- /zos.mainnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/zos.mainnet.json -------------------------------------------------------------------------------- /zos.ropsten.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenZeppelin/crafty/HEAD/zos.ropsten.json --------------------------------------------------------------------------------