├── .prettierrc ├── .solhint.json ├── README.md ├── contracts ├── RobotCore.sol ├── RobotFactory.sol └── RobotMarketPlace.sol ├── coverage.json ├── coverage ├── base.css ├── contracts │ ├── RobotCore.sol.html │ ├── RobotFactory.sol.html │ ├── RobotMarketPlace.sol.html │ └── index.html ├── coverage-final.json ├── index.html ├── lcov-report │ ├── base.css │ ├── contracts │ │ ├── RobotCore.sol.html │ │ ├── RobotFactory.sol.html │ │ ├── RobotMarketPlace.sol.html │ │ └── index.html │ ├── index.html │ ├── prettify.css │ ├── prettify.js │ ├── sort-arrow-sprite.png │ └── sorter.js ├── lcov.info ├── prettify.css ├── prettify.js ├── sort-arrow-sprite.png └── sorter.js ├── docgen └── index.md ├── docs ├── abi.js ├── assets │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrap.min.js.map │ │ │ └── popper.js │ ├── css │ │ ├── Poppins-Light.ttf │ │ ├── animations.css │ │ ├── colors.css │ │ ├── factory.css │ │ ├── frontend.css │ │ ├── mystyle.css │ │ ├── robots.css │ │ └── workspace.code-workspace │ ├── images │ │ ├── banner.png │ │ ├── coin.png │ │ ├── group.png │ │ ├── logo.png │ │ ├── modify.png │ │ ├── reward.png │ │ └── scheme.png │ └── js │ │ ├── colors.js │ │ ├── components.js │ │ ├── helpers.js │ │ ├── jquery-3.4.1.js │ │ ├── marketplace │ │ ├── buildRobot.js │ │ └── showRobots.js │ │ └── robotFactory │ │ ├── robotFactory.js │ │ └── robotSettings.js ├── factory.html ├── index.html ├── index.js ├── marketplace.html ├── modify.html ├── myRobots.html ├── robotDetails.html └── web3.min.js ├── hardhat.config.js ├── helpers └── READMEpng │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── Screenshot.png │ ├── Screenshot1.png │ ├── Screenshot3.png │ ├── Screenshot4.png │ ├── Screenshot5.png │ ├── Screenshot7.png │ └── Screenshot8.png ├── package.json ├── scripts └── deploy.js └── test ├── RobotCore ├── @index.js ├── createRobotGen0.js └── modifying.js ├── RobotFactory ├── @index.js ├── tokensOfOwner.js └── totalSupply.js └── RobotMarketPlace ├── @index.js ├── buyRobot.js ├── getAllTokensOnSale.js ├── removeOffer.js └── setOffer.js /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/.prettierrc -------------------------------------------------------------------------------- /.solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/.solhint.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/README.md -------------------------------------------------------------------------------- /contracts/RobotCore.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/contracts/RobotCore.sol -------------------------------------------------------------------------------- /contracts/RobotFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/contracts/RobotFactory.sol -------------------------------------------------------------------------------- /contracts/RobotMarketPlace.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/contracts/RobotMarketPlace.sol -------------------------------------------------------------------------------- /coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage.json -------------------------------------------------------------------------------- /coverage/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/base.css -------------------------------------------------------------------------------- /coverage/contracts/RobotCore.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/contracts/RobotCore.sol.html -------------------------------------------------------------------------------- /coverage/contracts/RobotFactory.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/contracts/RobotFactory.sol.html -------------------------------------------------------------------------------- /coverage/contracts/RobotMarketPlace.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/contracts/RobotMarketPlace.sol.html -------------------------------------------------------------------------------- /coverage/contracts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/contracts/index.html -------------------------------------------------------------------------------- /coverage/coverage-final.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/coverage-final.json -------------------------------------------------------------------------------- /coverage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/lcov-report/base.css -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/RobotCore.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/lcov-report/contracts/RobotCore.sol.html -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/RobotFactory.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/lcov-report/contracts/RobotFactory.sol.html -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/RobotMarketPlace.sol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/lcov-report/contracts/RobotMarketPlace.sol.html -------------------------------------------------------------------------------- /coverage/lcov-report/contracts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/lcov-report/contracts/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/lcov-report/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/lcov-report/prettify.css -------------------------------------------------------------------------------- /coverage/lcov-report/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/lcov-report/prettify.js -------------------------------------------------------------------------------- /coverage/lcov-report/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/lcov-report/sort-arrow-sprite.png -------------------------------------------------------------------------------- /coverage/lcov-report/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/lcov-report/sorter.js -------------------------------------------------------------------------------- /coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/lcov.info -------------------------------------------------------------------------------- /coverage/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/prettify.css -------------------------------------------------------------------------------- /coverage/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/prettify.js -------------------------------------------------------------------------------- /coverage/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/sort-arrow-sprite.png -------------------------------------------------------------------------------- /coverage/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/coverage/sorter.js -------------------------------------------------------------------------------- /docgen/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docgen/index.md -------------------------------------------------------------------------------- /docs/abi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/abi.js -------------------------------------------------------------------------------- /docs/assets/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /docs/assets/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /docs/assets/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /docs/assets/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /docs/assets/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /docs/assets/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /docs/assets/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /docs/assets/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /docs/assets/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /docs/assets/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /docs/assets/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/assets/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /docs/assets/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /docs/assets/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /docs/assets/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /docs/assets/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /docs/assets/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /docs/assets/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /docs/assets/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/assets/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /docs/assets/bootstrap/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/bootstrap/js/popper.js -------------------------------------------------------------------------------- /docs/assets/css/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/css/Poppins-Light.ttf -------------------------------------------------------------------------------- /docs/assets/css/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/css/animations.css -------------------------------------------------------------------------------- /docs/assets/css/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/css/colors.css -------------------------------------------------------------------------------- /docs/assets/css/factory.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/css/factory.css -------------------------------------------------------------------------------- /docs/assets/css/frontend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/css/frontend.css -------------------------------------------------------------------------------- /docs/assets/css/mystyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/css/mystyle.css -------------------------------------------------------------------------------- /docs/assets/css/robots.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/css/robots.css -------------------------------------------------------------------------------- /docs/assets/css/workspace.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/css/workspace.code-workspace -------------------------------------------------------------------------------- /docs/assets/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/images/banner.png -------------------------------------------------------------------------------- /docs/assets/images/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/images/coin.png -------------------------------------------------------------------------------- /docs/assets/images/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/images/group.png -------------------------------------------------------------------------------- /docs/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/images/logo.png -------------------------------------------------------------------------------- /docs/assets/images/modify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/images/modify.png -------------------------------------------------------------------------------- /docs/assets/images/reward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/images/reward.png -------------------------------------------------------------------------------- /docs/assets/images/scheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/images/scheme.png -------------------------------------------------------------------------------- /docs/assets/js/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/js/colors.js -------------------------------------------------------------------------------- /docs/assets/js/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/js/components.js -------------------------------------------------------------------------------- /docs/assets/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/js/helpers.js -------------------------------------------------------------------------------- /docs/assets/js/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/js/jquery-3.4.1.js -------------------------------------------------------------------------------- /docs/assets/js/marketplace/buildRobot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/js/marketplace/buildRobot.js -------------------------------------------------------------------------------- /docs/assets/js/marketplace/showRobots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/js/marketplace/showRobots.js -------------------------------------------------------------------------------- /docs/assets/js/robotFactory/robotFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/js/robotFactory/robotFactory.js -------------------------------------------------------------------------------- /docs/assets/js/robotFactory/robotSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/assets/js/robotFactory/robotSettings.js -------------------------------------------------------------------------------- /docs/factory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/factory.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/index.js -------------------------------------------------------------------------------- /docs/marketplace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/marketplace.html -------------------------------------------------------------------------------- /docs/modify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/modify.html -------------------------------------------------------------------------------- /docs/myRobots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/myRobots.html -------------------------------------------------------------------------------- /docs/robotDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/robotDetails.html -------------------------------------------------------------------------------- /docs/web3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/docs/web3.min.js -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /helpers/READMEpng/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/helpers/READMEpng/1.png -------------------------------------------------------------------------------- /helpers/READMEpng/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/helpers/READMEpng/2.png -------------------------------------------------------------------------------- /helpers/READMEpng/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/helpers/READMEpng/3.png -------------------------------------------------------------------------------- /helpers/READMEpng/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/helpers/READMEpng/4.png -------------------------------------------------------------------------------- /helpers/READMEpng/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/helpers/READMEpng/5.png -------------------------------------------------------------------------------- /helpers/READMEpng/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/helpers/READMEpng/6.png -------------------------------------------------------------------------------- /helpers/READMEpng/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/helpers/READMEpng/7.png -------------------------------------------------------------------------------- /helpers/READMEpng/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/helpers/READMEpng/8.png -------------------------------------------------------------------------------- /helpers/READMEpng/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/helpers/READMEpng/9.png -------------------------------------------------------------------------------- /helpers/READMEpng/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/helpers/READMEpng/Screenshot.png -------------------------------------------------------------------------------- /helpers/READMEpng/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/helpers/READMEpng/Screenshot1.png -------------------------------------------------------------------------------- /helpers/READMEpng/Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/helpers/READMEpng/Screenshot3.png -------------------------------------------------------------------------------- /helpers/READMEpng/Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/helpers/READMEpng/Screenshot4.png -------------------------------------------------------------------------------- /helpers/READMEpng/Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/helpers/READMEpng/Screenshot5.png -------------------------------------------------------------------------------- /helpers/READMEpng/Screenshot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/helpers/READMEpng/Screenshot7.png -------------------------------------------------------------------------------- /helpers/READMEpng/Screenshot8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/helpers/READMEpng/Screenshot8.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/package.json -------------------------------------------------------------------------------- /scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/scripts/deploy.js -------------------------------------------------------------------------------- /test/RobotCore/@index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/test/RobotCore/@index.js -------------------------------------------------------------------------------- /test/RobotCore/createRobotGen0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/test/RobotCore/createRobotGen0.js -------------------------------------------------------------------------------- /test/RobotCore/modifying.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/test/RobotCore/modifying.js -------------------------------------------------------------------------------- /test/RobotFactory/@index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/test/RobotFactory/@index.js -------------------------------------------------------------------------------- /test/RobotFactory/tokensOfOwner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/test/RobotFactory/tokensOfOwner.js -------------------------------------------------------------------------------- /test/RobotFactory/totalSupply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/test/RobotFactory/totalSupply.js -------------------------------------------------------------------------------- /test/RobotMarketPlace/@index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/test/RobotMarketPlace/@index.js -------------------------------------------------------------------------------- /test/RobotMarketPlace/buyRobot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/test/RobotMarketPlace/buyRobot.js -------------------------------------------------------------------------------- /test/RobotMarketPlace/getAllTokensOnSale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/test/RobotMarketPlace/getAllTokensOnSale.js -------------------------------------------------------------------------------- /test/RobotMarketPlace/removeOffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/test/RobotMarketPlace/removeOffer.js -------------------------------------------------------------------------------- /test/RobotMarketPlace/setOffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Honest0/TechnoirClub-Marketplace/HEAD/test/RobotMarketPlace/setOffer.js --------------------------------------------------------------------------------