├── .babelrc ├── .gitignore ├── Airbnb-scheme.xml ├── README.md ├── client ├── build │ ├── dev-server.js │ ├── webpack.config.js │ └── webpack.prod.js ├── config │ ├── clientConfig.json.dev │ ├── clientConfig.json.prod │ ├── config.json.dist │ ├── constants.js │ ├── generatePacks.js │ └── landingAssetPacks.json ├── favicon.ico ├── index.html ├── prod.html └── src │ ├── app.js │ ├── assets │ ├── anon-avatar.png │ ├── artwork.png │ ├── cg-logo-no-text.png │ ├── cg-logo.png │ ├── cg-logo.svg │ ├── cg-social-cover.jpg │ ├── default-error.jpg │ ├── error-icon.png │ ├── fonts │ │ ├── YoungSerif-Regular.eot │ │ ├── YoungSerif-Regular.svg │ │ ├── YoungSerif-Regular.ttf │ │ ├── YoungSerif-Regular.woff │ │ └── YoungSerif-Regular.woff2 │ └── round-logo.png │ ├── client-entry.js │ ├── components │ ├── App.vue │ ├── Pages │ │ ├── About │ │ │ └── About.vue │ │ ├── ActivityLog │ │ │ └── ActivityLog.vue │ │ ├── AssetPackPreview │ │ │ └── AssetPackPreview.vue │ │ ├── AssetPacks │ │ │ └── AssetPacks.vue │ │ ├── CreateAssetPack │ │ │ ├── CreateAssetPack.vue │ │ │ ├── SingleAsset │ │ │ │ └── SingleAsset.vue │ │ │ ├── TestAssetPack │ │ │ │ └── TestAssetPack.vue │ │ │ ├── UploadDescription │ │ │ │ └── UploadDescription.vue │ │ │ └── template │ │ │ │ └── InputFile.vue │ │ ├── CreateGraphic │ │ │ ├── AssetPicker │ │ │ │ └── AssetPicker.vue │ │ │ ├── CreateGraphic.vue │ │ │ ├── GraphicBuilder │ │ │ │ ├── Canvas.vue │ │ │ │ ├── GraphicBuilder.vue │ │ │ │ └── assets │ │ │ │ │ └── artbuilder-sample.png │ │ │ └── template │ │ │ │ └── AssetPickerPagination.vue │ │ ├── FAQ │ │ │ └── FAQ.vue │ │ ├── GalleryPage │ │ │ └── GalleryPage.vue │ │ ├── Landing │ │ │ ├── AssetCarousel │ │ │ │ ├── AssetCarousel.vue │ │ │ │ └── asset-packs │ │ │ │ │ ├── landing-ap-0.jpg │ │ │ │ │ ├── landing-ap-1.jpg │ │ │ │ │ ├── landing-ap-2.jpg │ │ │ │ │ ├── landing-ap-3.jpg │ │ │ │ │ ├── landing-ap-4.jpg │ │ │ │ │ ├── landing-ap-5.jpg │ │ │ │ │ ├── landing-ap-6.jpg │ │ │ │ │ └── landing-ap-8.jpg │ │ │ ├── GraphicPlayground │ │ │ │ └── GraphicPlayground.vue │ │ │ ├── Landing.vue │ │ │ └── assets │ │ │ │ ├── arrow.svg │ │ │ │ ├── asset-pack-1.png │ │ │ │ ├── asset-pack-2.png │ │ │ │ ├── asset-pack-3.png │ │ │ │ ├── asset.png │ │ │ │ ├── cg-stamp.png │ │ │ │ ├── home-header.jpg │ │ │ │ ├── home-header.png │ │ │ │ ├── ico-download.png │ │ │ │ ├── long.png │ │ │ │ ├── step-1.png │ │ │ │ ├── step-2.png │ │ │ │ ├── step-3.png │ │ │ │ └── wide.png │ │ ├── Profile │ │ │ ├── BalancesModal.vue │ │ │ ├── Profile.vue │ │ │ └── template │ │ │ │ └── AssetPacksPagination.vue │ │ ├── SingleGraphic │ │ │ ├── GraphicDetails.vue │ │ │ ├── GraphicEmptyState.vue │ │ │ ├── GraphicPreview.vue │ │ │ ├── PrintForm.vue │ │ │ ├── ShareIcons.vue │ │ │ ├── SingleGraphic.vue │ │ │ └── assets │ │ │ │ ├── artwork.png │ │ │ │ ├── cg-stamp-big.png │ │ │ │ └── stamp.png │ │ └── Tutorial │ │ │ ├── Tutorial.vue │ │ │ └── assets │ │ │ ├── checkered.png │ │ │ ├── image-1.png │ │ │ ├── image-10.png │ │ │ ├── image-11.png │ │ │ ├── image-12.png │ │ │ ├── image-13.png │ │ │ ├── image-2.jpg │ │ │ ├── image-3.png │ │ │ ├── image-4.png │ │ │ ├── image-5.png │ │ │ ├── image-6.png │ │ │ ├── image-7.png │ │ │ ├── image-8.png │ │ │ └── image-9.png │ └── Shared │ │ ├── AssetPackUploadError │ │ └── AssetPackUploadError.vue │ │ ├── CgFooter │ │ ├── CgFooter.vue │ │ ├── IcoSocial.vue │ │ └── open-sea-icon.svg │ │ ├── CgHeader │ │ └── CgHeader.vue │ │ ├── CoinbaseInfo │ │ ├── CoinbaseInfo.vue │ │ ├── coinbase-wallet-logo.png │ │ └── trust-wallet-logo.png │ │ ├── ConnectionModal │ │ └── ConnectionModal.vue │ │ ├── EditPackPrice │ │ └── EditPackPrice.vue │ │ ├── EditProfile │ │ └── EditProfile.vue │ │ ├── EmptyState │ │ └── EmptyState.vue │ │ ├── ErrorBar │ │ └── ErrorBar.vue │ │ ├── Layout │ │ └── Layout.vue │ │ ├── LoadingModal │ │ └── LoadingModal.vue │ │ ├── MetaMaskInfo │ │ └── MetaMaskInfo.vue │ │ ├── Modal │ │ └── Modal.vue │ │ ├── Notifications │ │ └── Notifications.vue │ │ ├── PaginatedGallery │ │ └── PaginatedGallery.vue │ │ ├── Pagination │ │ └── Pagination.vue │ │ ├── SetUsername │ │ └── SetUsername.vue │ │ ├── SliderGallery │ │ ├── SliderGallery.vue │ │ └── assets │ │ │ ├── Slide 01.jpg │ │ │ ├── Slide 02.jpg │ │ │ ├── Slide 03.jpg │ │ │ ├── Slide 04.jpg │ │ │ ├── Slide 05.jpg │ │ │ ├── Slide 06.jpg │ │ │ ├── Slide 07.jpg │ │ │ ├── Slide 08.jpg │ │ │ └── Slide 09.jpg │ │ ├── StepHeader │ │ └── StepHeader.vue │ │ ├── SuccessMessage │ │ └── SuccessMessage.vue │ │ ├── TransferHistory │ │ └── TransferHistory.vue │ │ └── UI │ │ ├── AssetBox.vue │ │ ├── AssetCircleLink.vue │ │ ├── Button.vue │ │ ├── ButtonIcon.vue │ │ ├── ButtonLink.vue │ │ ├── ButtonLoader.vue │ │ ├── Checkbox.vue │ │ ├── Icons │ │ ├── IcoArrow.vue │ │ ├── IcoArrowLong.vue │ │ ├── IcoBackground.vue │ │ ├── IcoClose.vue │ │ ├── IcoDownload.vue │ │ ├── IcoError.vue │ │ ├── IcoInfo.vue │ │ ├── IcoMagnifier.vue │ │ ├── IcoMetaMask.vue │ │ ├── IcoNotifError.vue │ │ ├── IcoPinterest.vue │ │ ├── IcoRecompose.vue │ │ ├── IcoReddit.vue │ │ ├── IcoRotate.vue │ │ ├── IcoScale.vue │ │ ├── IcoSmallArrow.vue │ │ ├── IcoSuccess.vue │ │ ├── IcoTrash.vue │ │ ├── IcoTumblr.vue │ │ ├── IcoTwitter.vue │ │ └── IcoWalletConnect.vue │ │ ├── Input.vue │ │ ├── InputFile.vue │ │ ├── Loader.vue │ │ ├── Logo.vue │ │ ├── LogoDecenter.vue │ │ ├── Overlay.vue │ │ ├── Price.vue │ │ ├── Radio.vue │ │ ├── Separator.vue │ │ ├── Textarea.vue │ │ ├── UIShowcase.vue │ │ ├── UserLink.vue │ │ └── button-styles.scss │ ├── router.js │ ├── services │ ├── ethereumService.js │ ├── helpers.js │ ├── imageService.js │ ├── ipfsService.js │ ├── localStorageService.js │ ├── utils.js │ └── web3Service.js │ ├── store │ ├── modules │ │ ├── canvas │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ ├── state.js │ │ │ └── types.js │ │ ├── modal │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ ├── state.js │ │ │ └── types.js │ │ └── user-config │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── mutations.js │ │ │ ├── state.js │ │ │ └── types.js │ └── store.js │ └── templates │ └── styles │ ├── common.scss │ └── reset.css ├── contracts ├── AssetManager.sol ├── CryptographicsGetter.sol ├── IAssetManager.sol ├── Image │ └── DigitalPrintImage.sol ├── Marketplace.sol ├── Migrations.sol ├── UserManager.sol └── Utils │ └── Functions.sol ├── dataServer ├── component │ ├── activity │ │ ├── activityEventsMeta.js │ │ ├── addPastEvents.js │ │ ├── controller.js │ │ ├── events │ │ │ ├── assetPackBought │ │ │ │ ├── helper.js │ │ │ │ └── model.js │ │ │ ├── assetPackCreated │ │ │ │ ├── helper.js │ │ │ │ └── model.js │ │ │ ├── imageBought │ │ │ │ ├── helper.js │ │ │ │ └── model.js │ │ │ ├── imageCreated │ │ │ │ ├── helper.js │ │ │ │ └── model.js │ │ │ └── sellingImage │ │ │ │ ├── helper.js │ │ │ │ └── model.js │ │ └── listenToEvents.js │ ├── constants.js │ ├── ethereumService.js │ ├── ipfsService.js │ ├── router.js │ ├── utils.js │ └── web3Provider.js ├── config │ ├── dbConnection.js │ ├── logger.js │ ├── main.js │ └── socket.js ├── index.js └── package.json ├── documentation ├── docs │ ├── api_AssetManager.md │ ├── api_IAssetManager.md │ ├── api_Image_DigitalPrintImage.md │ ├── api_Image_ERC721.md │ ├── api_Image_ImageToken.md │ ├── api_Marketplace.md │ ├── api_Migrations.md │ ├── api_Utils_Functions.md │ └── api_Utils_Ownable.md └── website │ ├── core │ └── Footer.js │ ├── i18n │ └── en.json │ ├── package.json │ ├── pages │ └── en │ │ ├── help.js │ │ ├── index.js │ │ └── users.js │ ├── sidebars.json │ ├── siteConfig.js │ └── static │ ├── css │ └── custom.css │ └── img │ ├── docusaurus.svg │ ├── favicon.png │ ├── favicon │ └── favicon.ico │ └── oss_logo.png ├── go.mod ├── go.sum ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── scripts └── update_config.py ├── server └── server.go ├── test ├── TestAssets.js ├── TestCryptographicsGetter.js ├── TestDigitalPrintImage.js ├── TestFunctions.js ├── TestMarketplace.js └── helpers │ └── advanceToBlock.js ├── truffle-config.js └── truffle.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/.gitignore -------------------------------------------------------------------------------- /Airbnb-scheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/Airbnb-scheme.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/README.md -------------------------------------------------------------------------------- /client/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/build/dev-server.js -------------------------------------------------------------------------------- /client/build/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/build/webpack.config.js -------------------------------------------------------------------------------- /client/build/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/build/webpack.prod.js -------------------------------------------------------------------------------- /client/config/clientConfig.json.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/config/clientConfig.json.dev -------------------------------------------------------------------------------- /client/config/clientConfig.json.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/config/clientConfig.json.prod -------------------------------------------------------------------------------- /client/config/config.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/config/config.json.dist -------------------------------------------------------------------------------- /client/config/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/config/constants.js -------------------------------------------------------------------------------- /client/config/generatePacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/config/generatePacks.js -------------------------------------------------------------------------------- /client/config/landingAssetPacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/config/landingAssetPacks.json -------------------------------------------------------------------------------- /client/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/favicon.ico -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/index.html -------------------------------------------------------------------------------- /client/prod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/prod.html -------------------------------------------------------------------------------- /client/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/app.js -------------------------------------------------------------------------------- /client/src/assets/anon-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/assets/anon-avatar.png -------------------------------------------------------------------------------- /client/src/assets/artwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/assets/artwork.png -------------------------------------------------------------------------------- /client/src/assets/cg-logo-no-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/assets/cg-logo-no-text.png -------------------------------------------------------------------------------- /client/src/assets/cg-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/assets/cg-logo.png -------------------------------------------------------------------------------- /client/src/assets/cg-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/assets/cg-logo.svg -------------------------------------------------------------------------------- /client/src/assets/cg-social-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/assets/cg-social-cover.jpg -------------------------------------------------------------------------------- /client/src/assets/default-error.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/assets/default-error.jpg -------------------------------------------------------------------------------- /client/src/assets/error-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/assets/error-icon.png -------------------------------------------------------------------------------- /client/src/assets/fonts/YoungSerif-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/assets/fonts/YoungSerif-Regular.eot -------------------------------------------------------------------------------- /client/src/assets/fonts/YoungSerif-Regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/assets/fonts/YoungSerif-Regular.svg -------------------------------------------------------------------------------- /client/src/assets/fonts/YoungSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/assets/fonts/YoungSerif-Regular.ttf -------------------------------------------------------------------------------- /client/src/assets/fonts/YoungSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/assets/fonts/YoungSerif-Regular.woff -------------------------------------------------------------------------------- /client/src/assets/fonts/YoungSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/assets/fonts/YoungSerif-Regular.woff2 -------------------------------------------------------------------------------- /client/src/assets/round-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/assets/round-logo.png -------------------------------------------------------------------------------- /client/src/client-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/client-entry.js -------------------------------------------------------------------------------- /client/src/components/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/App.vue -------------------------------------------------------------------------------- /client/src/components/Pages/About/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/About/About.vue -------------------------------------------------------------------------------- /client/src/components/Pages/ActivityLog/ActivityLog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/ActivityLog/ActivityLog.vue -------------------------------------------------------------------------------- /client/src/components/Pages/AssetPackPreview/AssetPackPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/AssetPackPreview/AssetPackPreview.vue -------------------------------------------------------------------------------- /client/src/components/Pages/AssetPacks/AssetPacks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/AssetPacks/AssetPacks.vue -------------------------------------------------------------------------------- /client/src/components/Pages/CreateAssetPack/CreateAssetPack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/CreateAssetPack/CreateAssetPack.vue -------------------------------------------------------------------------------- /client/src/components/Pages/CreateAssetPack/SingleAsset/SingleAsset.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/CreateAssetPack/SingleAsset/SingleAsset.vue -------------------------------------------------------------------------------- /client/src/components/Pages/CreateAssetPack/TestAssetPack/TestAssetPack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/CreateAssetPack/TestAssetPack/TestAssetPack.vue -------------------------------------------------------------------------------- /client/src/components/Pages/CreateAssetPack/UploadDescription/UploadDescription.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/CreateAssetPack/UploadDescription/UploadDescription.vue -------------------------------------------------------------------------------- /client/src/components/Pages/CreateAssetPack/template/InputFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/CreateAssetPack/template/InputFile.vue -------------------------------------------------------------------------------- /client/src/components/Pages/CreateGraphic/AssetPicker/AssetPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/CreateGraphic/AssetPicker/AssetPicker.vue -------------------------------------------------------------------------------- /client/src/components/Pages/CreateGraphic/CreateGraphic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/CreateGraphic/CreateGraphic.vue -------------------------------------------------------------------------------- /client/src/components/Pages/CreateGraphic/GraphicBuilder/Canvas.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/CreateGraphic/GraphicBuilder/Canvas.vue -------------------------------------------------------------------------------- /client/src/components/Pages/CreateGraphic/GraphicBuilder/GraphicBuilder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/CreateGraphic/GraphicBuilder/GraphicBuilder.vue -------------------------------------------------------------------------------- /client/src/components/Pages/CreateGraphic/GraphicBuilder/assets/artbuilder-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/CreateGraphic/GraphicBuilder/assets/artbuilder-sample.png -------------------------------------------------------------------------------- /client/src/components/Pages/CreateGraphic/template/AssetPickerPagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/CreateGraphic/template/AssetPickerPagination.vue -------------------------------------------------------------------------------- /client/src/components/Pages/FAQ/FAQ.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/FAQ/FAQ.vue -------------------------------------------------------------------------------- /client/src/components/Pages/GalleryPage/GalleryPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/GalleryPage/GalleryPage.vue -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/AssetCarousel/AssetCarousel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/AssetCarousel/AssetCarousel.vue -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/AssetCarousel/asset-packs/landing-ap-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/AssetCarousel/asset-packs/landing-ap-0.jpg -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/AssetCarousel/asset-packs/landing-ap-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/AssetCarousel/asset-packs/landing-ap-1.jpg -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/AssetCarousel/asset-packs/landing-ap-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/AssetCarousel/asset-packs/landing-ap-2.jpg -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/AssetCarousel/asset-packs/landing-ap-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/AssetCarousel/asset-packs/landing-ap-3.jpg -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/AssetCarousel/asset-packs/landing-ap-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/AssetCarousel/asset-packs/landing-ap-4.jpg -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/AssetCarousel/asset-packs/landing-ap-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/AssetCarousel/asset-packs/landing-ap-5.jpg -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/AssetCarousel/asset-packs/landing-ap-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/AssetCarousel/asset-packs/landing-ap-6.jpg -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/AssetCarousel/asset-packs/landing-ap-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/AssetCarousel/asset-packs/landing-ap-8.jpg -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/GraphicPlayground/GraphicPlayground.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/GraphicPlayground/GraphicPlayground.vue -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/Landing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/Landing.vue -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/assets/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/assets/arrow.svg -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/assets/asset-pack-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/assets/asset-pack-1.png -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/assets/asset-pack-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/assets/asset-pack-2.png -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/assets/asset-pack-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/assets/asset-pack-3.png -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/assets/asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/assets/asset.png -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/assets/cg-stamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/assets/cg-stamp.png -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/assets/home-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/assets/home-header.jpg -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/assets/home-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/assets/home-header.png -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/assets/ico-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/assets/ico-download.png -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/assets/long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/assets/long.png -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/assets/step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/assets/step-1.png -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/assets/step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/assets/step-2.png -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/assets/step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/assets/step-3.png -------------------------------------------------------------------------------- /client/src/components/Pages/Landing/assets/wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Landing/assets/wide.png -------------------------------------------------------------------------------- /client/src/components/Pages/Profile/BalancesModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Profile/BalancesModal.vue -------------------------------------------------------------------------------- /client/src/components/Pages/Profile/Profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Profile/Profile.vue -------------------------------------------------------------------------------- /client/src/components/Pages/Profile/template/AssetPacksPagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Profile/template/AssetPacksPagination.vue -------------------------------------------------------------------------------- /client/src/components/Pages/SingleGraphic/GraphicDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/SingleGraphic/GraphicDetails.vue -------------------------------------------------------------------------------- /client/src/components/Pages/SingleGraphic/GraphicEmptyState.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/SingleGraphic/GraphicEmptyState.vue -------------------------------------------------------------------------------- /client/src/components/Pages/SingleGraphic/GraphicPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/SingleGraphic/GraphicPreview.vue -------------------------------------------------------------------------------- /client/src/components/Pages/SingleGraphic/PrintForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/SingleGraphic/PrintForm.vue -------------------------------------------------------------------------------- /client/src/components/Pages/SingleGraphic/ShareIcons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/SingleGraphic/ShareIcons.vue -------------------------------------------------------------------------------- /client/src/components/Pages/SingleGraphic/SingleGraphic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/SingleGraphic/SingleGraphic.vue -------------------------------------------------------------------------------- /client/src/components/Pages/SingleGraphic/assets/artwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/SingleGraphic/assets/artwork.png -------------------------------------------------------------------------------- /client/src/components/Pages/SingleGraphic/assets/cg-stamp-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/SingleGraphic/assets/cg-stamp-big.png -------------------------------------------------------------------------------- /client/src/components/Pages/SingleGraphic/assets/stamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/SingleGraphic/assets/stamp.png -------------------------------------------------------------------------------- /client/src/components/Pages/Tutorial/Tutorial.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Tutorial/Tutorial.vue -------------------------------------------------------------------------------- /client/src/components/Pages/Tutorial/assets/checkered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Tutorial/assets/checkered.png -------------------------------------------------------------------------------- /client/src/components/Pages/Tutorial/assets/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Tutorial/assets/image-1.png -------------------------------------------------------------------------------- /client/src/components/Pages/Tutorial/assets/image-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Tutorial/assets/image-10.png -------------------------------------------------------------------------------- /client/src/components/Pages/Tutorial/assets/image-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Tutorial/assets/image-11.png -------------------------------------------------------------------------------- /client/src/components/Pages/Tutorial/assets/image-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Tutorial/assets/image-12.png -------------------------------------------------------------------------------- /client/src/components/Pages/Tutorial/assets/image-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Tutorial/assets/image-13.png -------------------------------------------------------------------------------- /client/src/components/Pages/Tutorial/assets/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Tutorial/assets/image-2.jpg -------------------------------------------------------------------------------- /client/src/components/Pages/Tutorial/assets/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Tutorial/assets/image-3.png -------------------------------------------------------------------------------- /client/src/components/Pages/Tutorial/assets/image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Tutorial/assets/image-4.png -------------------------------------------------------------------------------- /client/src/components/Pages/Tutorial/assets/image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Tutorial/assets/image-5.png -------------------------------------------------------------------------------- /client/src/components/Pages/Tutorial/assets/image-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Tutorial/assets/image-6.png -------------------------------------------------------------------------------- /client/src/components/Pages/Tutorial/assets/image-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Tutorial/assets/image-7.png -------------------------------------------------------------------------------- /client/src/components/Pages/Tutorial/assets/image-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Tutorial/assets/image-8.png -------------------------------------------------------------------------------- /client/src/components/Pages/Tutorial/assets/image-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Pages/Tutorial/assets/image-9.png -------------------------------------------------------------------------------- /client/src/components/Shared/AssetPackUploadError/AssetPackUploadError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/AssetPackUploadError/AssetPackUploadError.vue -------------------------------------------------------------------------------- /client/src/components/Shared/CgFooter/CgFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/CgFooter/CgFooter.vue -------------------------------------------------------------------------------- /client/src/components/Shared/CgFooter/IcoSocial.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/CgFooter/IcoSocial.vue -------------------------------------------------------------------------------- /client/src/components/Shared/CgFooter/open-sea-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/CgFooter/open-sea-icon.svg -------------------------------------------------------------------------------- /client/src/components/Shared/CgHeader/CgHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/CgHeader/CgHeader.vue -------------------------------------------------------------------------------- /client/src/components/Shared/CoinbaseInfo/CoinbaseInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/CoinbaseInfo/CoinbaseInfo.vue -------------------------------------------------------------------------------- /client/src/components/Shared/CoinbaseInfo/coinbase-wallet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/CoinbaseInfo/coinbase-wallet-logo.png -------------------------------------------------------------------------------- /client/src/components/Shared/CoinbaseInfo/trust-wallet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/CoinbaseInfo/trust-wallet-logo.png -------------------------------------------------------------------------------- /client/src/components/Shared/ConnectionModal/ConnectionModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/ConnectionModal/ConnectionModal.vue -------------------------------------------------------------------------------- /client/src/components/Shared/EditPackPrice/EditPackPrice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/EditPackPrice/EditPackPrice.vue -------------------------------------------------------------------------------- /client/src/components/Shared/EditProfile/EditProfile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/EditProfile/EditProfile.vue -------------------------------------------------------------------------------- /client/src/components/Shared/EmptyState/EmptyState.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/EmptyState/EmptyState.vue -------------------------------------------------------------------------------- /client/src/components/Shared/ErrorBar/ErrorBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/ErrorBar/ErrorBar.vue -------------------------------------------------------------------------------- /client/src/components/Shared/Layout/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/Layout/Layout.vue -------------------------------------------------------------------------------- /client/src/components/Shared/LoadingModal/LoadingModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/LoadingModal/LoadingModal.vue -------------------------------------------------------------------------------- /client/src/components/Shared/MetaMaskInfo/MetaMaskInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/MetaMaskInfo/MetaMaskInfo.vue -------------------------------------------------------------------------------- /client/src/components/Shared/Modal/Modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/Modal/Modal.vue -------------------------------------------------------------------------------- /client/src/components/Shared/Notifications/Notifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/Notifications/Notifications.vue -------------------------------------------------------------------------------- /client/src/components/Shared/PaginatedGallery/PaginatedGallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/PaginatedGallery/PaginatedGallery.vue -------------------------------------------------------------------------------- /client/src/components/Shared/Pagination/Pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/Pagination/Pagination.vue -------------------------------------------------------------------------------- /client/src/components/Shared/SetUsername/SetUsername.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/SetUsername/SetUsername.vue -------------------------------------------------------------------------------- /client/src/components/Shared/SliderGallery/SliderGallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/SliderGallery/SliderGallery.vue -------------------------------------------------------------------------------- /client/src/components/Shared/SliderGallery/assets/Slide 01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/SliderGallery/assets/Slide 01.jpg -------------------------------------------------------------------------------- /client/src/components/Shared/SliderGallery/assets/Slide 02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/SliderGallery/assets/Slide 02.jpg -------------------------------------------------------------------------------- /client/src/components/Shared/SliderGallery/assets/Slide 03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/SliderGallery/assets/Slide 03.jpg -------------------------------------------------------------------------------- /client/src/components/Shared/SliderGallery/assets/Slide 04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/SliderGallery/assets/Slide 04.jpg -------------------------------------------------------------------------------- /client/src/components/Shared/SliderGallery/assets/Slide 05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/SliderGallery/assets/Slide 05.jpg -------------------------------------------------------------------------------- /client/src/components/Shared/SliderGallery/assets/Slide 06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/SliderGallery/assets/Slide 06.jpg -------------------------------------------------------------------------------- /client/src/components/Shared/SliderGallery/assets/Slide 07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/SliderGallery/assets/Slide 07.jpg -------------------------------------------------------------------------------- /client/src/components/Shared/SliderGallery/assets/Slide 08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/SliderGallery/assets/Slide 08.jpg -------------------------------------------------------------------------------- /client/src/components/Shared/SliderGallery/assets/Slide 09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/SliderGallery/assets/Slide 09.jpg -------------------------------------------------------------------------------- /client/src/components/Shared/StepHeader/StepHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/StepHeader/StepHeader.vue -------------------------------------------------------------------------------- /client/src/components/Shared/SuccessMessage/SuccessMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/SuccessMessage/SuccessMessage.vue -------------------------------------------------------------------------------- /client/src/components/Shared/TransferHistory/TransferHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/TransferHistory/TransferHistory.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/AssetBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/AssetBox.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/AssetCircleLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/AssetCircleLink.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Button.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/ButtonIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/ButtonIcon.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/ButtonLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/ButtonLink.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/ButtonLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/ButtonLoader.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Checkbox.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoArrow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoArrow.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoArrowLong.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoArrowLong.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoBackground.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoBackground.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoClose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoClose.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoDownload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoDownload.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoError.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoInfo.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoMagnifier.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoMagnifier.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoMetaMask.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoMetaMask.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoNotifError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoNotifError.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoPinterest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoPinterest.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoRecompose.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoRecompose.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoReddit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoReddit.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoRotate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoRotate.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoScale.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoScale.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoSmallArrow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoSmallArrow.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoSuccess.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoSuccess.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoTrash.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoTrash.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoTumblr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoTumblr.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoTwitter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoTwitter.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Icons/IcoWalletConnect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Icons/IcoWalletConnect.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Input.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/InputFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/InputFile.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Loader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Loader.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Logo.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/LogoDecenter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/LogoDecenter.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Overlay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Overlay.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Price.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Price.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Radio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Radio.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Separator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Separator.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/Textarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/Textarea.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/UIShowcase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/UIShowcase.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/UserLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/UserLink.vue -------------------------------------------------------------------------------- /client/src/components/Shared/UI/button-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/components/Shared/UI/button-styles.scss -------------------------------------------------------------------------------- /client/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/router.js -------------------------------------------------------------------------------- /client/src/services/ethereumService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/services/ethereumService.js -------------------------------------------------------------------------------- /client/src/services/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/services/helpers.js -------------------------------------------------------------------------------- /client/src/services/imageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/services/imageService.js -------------------------------------------------------------------------------- /client/src/services/ipfsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/services/ipfsService.js -------------------------------------------------------------------------------- /client/src/services/localStorageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/services/localStorageService.js -------------------------------------------------------------------------------- /client/src/services/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/services/utils.js -------------------------------------------------------------------------------- /client/src/services/web3Service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/services/web3Service.js -------------------------------------------------------------------------------- /client/src/store/modules/canvas/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/canvas/actions.js -------------------------------------------------------------------------------- /client/src/store/modules/canvas/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/canvas/getters.js -------------------------------------------------------------------------------- /client/src/store/modules/canvas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/canvas/index.js -------------------------------------------------------------------------------- /client/src/store/modules/canvas/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/canvas/mutations.js -------------------------------------------------------------------------------- /client/src/store/modules/canvas/state.js: -------------------------------------------------------------------------------- 1 | export default { 2 | isCanvasDrawing: false, 3 | selectedAssetPacks: [], 4 | }; -------------------------------------------------------------------------------- /client/src/store/modules/canvas/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/canvas/types.js -------------------------------------------------------------------------------- /client/src/store/modules/modal/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/modal/actions.js -------------------------------------------------------------------------------- /client/src/store/modules/modal/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/modal/getters.js -------------------------------------------------------------------------------- /client/src/store/modules/modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/modal/index.js -------------------------------------------------------------------------------- /client/src/store/modules/modal/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/modal/mutations.js -------------------------------------------------------------------------------- /client/src/store/modules/modal/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/modal/state.js -------------------------------------------------------------------------------- /client/src/store/modules/modal/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/modal/types.js -------------------------------------------------------------------------------- /client/src/store/modules/user-config/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/user-config/actions.js -------------------------------------------------------------------------------- /client/src/store/modules/user-config/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/user-config/getters.js -------------------------------------------------------------------------------- /client/src/store/modules/user-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/user-config/index.js -------------------------------------------------------------------------------- /client/src/store/modules/user-config/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/user-config/mutations.js -------------------------------------------------------------------------------- /client/src/store/modules/user-config/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/user-config/state.js -------------------------------------------------------------------------------- /client/src/store/modules/user-config/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/modules/user-config/types.js -------------------------------------------------------------------------------- /client/src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/store/store.js -------------------------------------------------------------------------------- /client/src/templates/styles/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/templates/styles/common.scss -------------------------------------------------------------------------------- /client/src/templates/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/client/src/templates/styles/reset.css -------------------------------------------------------------------------------- /contracts/AssetManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/contracts/AssetManager.sol -------------------------------------------------------------------------------- /contracts/CryptographicsGetter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/contracts/CryptographicsGetter.sol -------------------------------------------------------------------------------- /contracts/IAssetManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/contracts/IAssetManager.sol -------------------------------------------------------------------------------- /contracts/Image/DigitalPrintImage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/contracts/Image/DigitalPrintImage.sol -------------------------------------------------------------------------------- /contracts/Marketplace.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/contracts/Marketplace.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/UserManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/contracts/UserManager.sol -------------------------------------------------------------------------------- /contracts/Utils/Functions.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/contracts/Utils/Functions.sol -------------------------------------------------------------------------------- /dataServer/component/activity/activityEventsMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/activity/activityEventsMeta.js -------------------------------------------------------------------------------- /dataServer/component/activity/addPastEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/activity/addPastEvents.js -------------------------------------------------------------------------------- /dataServer/component/activity/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/activity/controller.js -------------------------------------------------------------------------------- /dataServer/component/activity/events/assetPackBought/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/activity/events/assetPackBought/helper.js -------------------------------------------------------------------------------- /dataServer/component/activity/events/assetPackBought/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/activity/events/assetPackBought/model.js -------------------------------------------------------------------------------- /dataServer/component/activity/events/assetPackCreated/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/activity/events/assetPackCreated/helper.js -------------------------------------------------------------------------------- /dataServer/component/activity/events/assetPackCreated/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/activity/events/assetPackCreated/model.js -------------------------------------------------------------------------------- /dataServer/component/activity/events/imageBought/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/activity/events/imageBought/helper.js -------------------------------------------------------------------------------- /dataServer/component/activity/events/imageBought/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/activity/events/imageBought/model.js -------------------------------------------------------------------------------- /dataServer/component/activity/events/imageCreated/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/activity/events/imageCreated/helper.js -------------------------------------------------------------------------------- /dataServer/component/activity/events/imageCreated/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/activity/events/imageCreated/model.js -------------------------------------------------------------------------------- /dataServer/component/activity/events/sellingImage/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/activity/events/sellingImage/helper.js -------------------------------------------------------------------------------- /dataServer/component/activity/events/sellingImage/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/activity/events/sellingImage/model.js -------------------------------------------------------------------------------- /dataServer/component/activity/listenToEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/activity/listenToEvents.js -------------------------------------------------------------------------------- /dataServer/component/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/constants.js -------------------------------------------------------------------------------- /dataServer/component/ethereumService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/ethereumService.js -------------------------------------------------------------------------------- /dataServer/component/ipfsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/ipfsService.js -------------------------------------------------------------------------------- /dataServer/component/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/router.js -------------------------------------------------------------------------------- /dataServer/component/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/utils.js -------------------------------------------------------------------------------- /dataServer/component/web3Provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/component/web3Provider.js -------------------------------------------------------------------------------- /dataServer/config/dbConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/config/dbConnection.js -------------------------------------------------------------------------------- /dataServer/config/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/config/logger.js -------------------------------------------------------------------------------- /dataServer/config/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/config/main.js -------------------------------------------------------------------------------- /dataServer/config/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/config/socket.js -------------------------------------------------------------------------------- /dataServer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/index.js -------------------------------------------------------------------------------- /dataServer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/dataServer/package.json -------------------------------------------------------------------------------- /documentation/docs/api_AssetManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/docs/api_AssetManager.md -------------------------------------------------------------------------------- /documentation/docs/api_IAssetManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/docs/api_IAssetManager.md -------------------------------------------------------------------------------- /documentation/docs/api_Image_DigitalPrintImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/docs/api_Image_DigitalPrintImage.md -------------------------------------------------------------------------------- /documentation/docs/api_Image_ERC721.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/docs/api_Image_ERC721.md -------------------------------------------------------------------------------- /documentation/docs/api_Image_ImageToken.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/docs/api_Image_ImageToken.md -------------------------------------------------------------------------------- /documentation/docs/api_Marketplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/docs/api_Marketplace.md -------------------------------------------------------------------------------- /documentation/docs/api_Migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/docs/api_Migrations.md -------------------------------------------------------------------------------- /documentation/docs/api_Utils_Functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/docs/api_Utils_Functions.md -------------------------------------------------------------------------------- /documentation/docs/api_Utils_Ownable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/docs/api_Utils_Ownable.md -------------------------------------------------------------------------------- /documentation/website/core/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/website/core/Footer.js -------------------------------------------------------------------------------- /documentation/website/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/website/i18n/en.json -------------------------------------------------------------------------------- /documentation/website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/website/package.json -------------------------------------------------------------------------------- /documentation/website/pages/en/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/website/pages/en/help.js -------------------------------------------------------------------------------- /documentation/website/pages/en/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/website/pages/en/index.js -------------------------------------------------------------------------------- /documentation/website/pages/en/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/website/pages/en/users.js -------------------------------------------------------------------------------- /documentation/website/sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/website/sidebars.json -------------------------------------------------------------------------------- /documentation/website/siteConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/website/siteConfig.js -------------------------------------------------------------------------------- /documentation/website/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/website/static/css/custom.css -------------------------------------------------------------------------------- /documentation/website/static/img/docusaurus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/website/static/img/docusaurus.svg -------------------------------------------------------------------------------- /documentation/website/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/website/static/img/favicon.png -------------------------------------------------------------------------------- /documentation/website/static/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/website/static/img/favicon/favicon.ico -------------------------------------------------------------------------------- /documentation/website/static/img/oss_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/documentation/website/static/img/oss_logo.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/go.sum -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/package.json -------------------------------------------------------------------------------- /scripts/update_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/scripts/update_config.py -------------------------------------------------------------------------------- /server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/server/server.go -------------------------------------------------------------------------------- /test/TestAssets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/test/TestAssets.js -------------------------------------------------------------------------------- /test/TestCryptographicsGetter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/test/TestCryptographicsGetter.js -------------------------------------------------------------------------------- /test/TestDigitalPrintImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/test/TestDigitalPrintImage.js -------------------------------------------------------------------------------- /test/TestFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/test/TestFunctions.js -------------------------------------------------------------------------------- /test/TestMarketplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/test/TestMarketplace.js -------------------------------------------------------------------------------- /test/helpers/advanceToBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/test/helpers/advanceToBlock.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/truffle-config.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DecenterApps/Cryptographics/HEAD/truffle.js --------------------------------------------------------------------------------