├── .dockerignore ├── .gitattributes ├── .github └── workflows │ └── deploy-production.yml ├── .gitignore ├── LICENSE ├── README.md ├── android_app ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── 1024.png │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── android_app │ │ │ │ │ └── MainActivity.kt │ │ │ ├── play_store_512.png │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── branding.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── branding.png │ │ │ │ ├── drawable-v21 │ │ │ │ ├── background.png │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── branding.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── branding.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── branding.png │ │ │ │ ├── drawable │ │ │ │ ├── background.png │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ └── ic_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_adaptive_back.png │ │ │ │ └── ic_launcher_adaptive_fore.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_adaptive_back.png │ │ │ │ └── ic_launcher_adaptive_fore.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_adaptive_back.png │ │ │ │ └── ic_launcher_adaptive_fore.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_adaptive_back.png │ │ │ │ └── ic_launcher_adaptive_fore.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_adaptive_back.png │ │ │ │ └── ic_launcher_adaptive_fore.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ ├── values-v31 │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ └── brand │ │ ├── 1024.png │ │ ├── brand_H.png │ │ ├── brand_V.png │ │ ├── play_store_512.png │ │ ├── splash_background.png │ │ └── splash_branding.png ├── lib │ ├── main.dart │ ├── models │ │ ├── account.dart │ │ ├── item_detail.dart │ │ ├── item_post.dart │ │ └── order.dart │ ├── utils │ │ ├── clipboard.dart │ │ ├── constants │ │ │ ├── theme.dart │ │ │ └── url.dart │ │ └── ethereum.dart │ ├── views │ │ ├── account │ │ │ └── account_view.dart │ │ ├── home │ │ │ └── home_view.dart │ │ ├── item │ │ │ └── item_view.dart │ │ ├── login │ │ │ ├── login_form_view.dart │ │ │ └── login_view.dart │ │ ├── main_screen.dart │ │ ├── my_items │ │ │ └── my_items_view.dart │ │ ├── my_order │ │ │ ├── covert_state.dart │ │ │ ├── my_order.dart │ │ │ └── order_card.dart │ │ ├── payment │ │ │ ├── bill.dart │ │ │ └── payment.dart │ │ ├── register │ │ │ ├── register_view.dart │ │ │ ├── register_view_final.dart │ │ │ └── register_view_next.dart │ │ └── search │ │ │ └── search_view.dart │ ├── views_model │ │ ├── home │ │ │ └── item_list_view_model.dart │ │ ├── item │ │ │ └── item_view_model.dart │ │ ├── login │ │ │ ├── login_view_model.dart │ │ │ └── login_wallet.dart │ │ ├── my_items │ │ │ └── my_items_view_model.dart │ │ ├── my_order │ │ │ └── my_order_view_model.dart │ │ ├── payment │ │ │ └── payment_view_model.dart │ │ ├── register │ │ │ └── register_view_model.dart │ │ └── search │ │ │ └── search_item_list_view_model.dart │ └── widgets │ │ ├── circular_progress_indicator.dart │ │ ├── item_card.dart │ │ └── snack_bar.dart ├── pubspec.lock └── pubspec.yaml ├── client ├── .dockerignore ├── .env ├── .env.production ├── .github │ └── workflows │ │ └── deploy-production.yml ├── .gitignore ├── Dockerfile ├── Dockerfile.development ├── Dockerfile.production ├── README.md ├── example.env ├── package-lock.json ├── package.json ├── public │ ├── background_cover.jpg │ ├── brand_H.png │ ├── brand_V.png │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── logo_F_blue_bgwhite.jpg │ ├── logo_F_primary.png │ ├── logo_F_white.png │ ├── logo_F_white_bgblue.jpg │ ├── manifest.json │ ├── metamask_logo.png │ └── robots.txt └── src │ ├── App.js │ ├── App.test.js │ ├── components │ ├── Error.js │ ├── Footer.js │ ├── Login.js │ ├── LoginError.js │ ├── ModalTransaction.js │ ├── NavigationBar.js │ ├── ToastAutoHide.js │ ├── check │ │ ├── CheckRawData.js │ │ └── CheckRawData.test.js │ ├── create │ │ ├── CreateButton.js │ │ ├── CreateButton.test.js │ │ ├── CreateItem.js │ │ └── CreateItem.test.js │ ├── home │ │ ├── BuyButton.js │ │ ├── BuyButton.test.js │ │ ├── Home.js │ │ ├── Home.test.js │ │ ├── ItemCard.js │ │ ├── ItemDetail.js │ │ ├── ModalItemPicture.js │ │ └── ModalItemPicture.test.js │ ├── profile │ │ ├── Avatar.js │ │ ├── DeliveryTo.js │ │ ├── MyItem.js │ │ ├── MyOrder.js │ │ ├── Name.js │ │ ├── OrderNextStep.js │ │ ├── OrderRow.js │ │ └── Profile.js │ └── search │ │ └── Search.js │ ├── contracts │ ├── Context.json │ ├── Counters.json │ ├── Item.json │ ├── ItemManager.json │ ├── Migrations.json │ ├── Order.json │ ├── Ownable.json │ ├── Timers.json │ └── VerifySignature.json │ ├── getWeb3.js │ ├── index.js │ ├── logo.svg │ └── serviceWorker.js ├── contracts ├── Context.sol ├── Counters.sol ├── Item.sol ├── ItemManager.sol ├── Migrations.sol ├── Order.sol ├── Ownable.sol ├── Timers.sol └── VeryfyingSignature.sol ├── diagram.drawio ├── docker-compose.development.yml ├── docker-compose.production.yml ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── server ├── .dockerignore ├── Dockerfile ├── Dockerfile.development ├── Dockerfile.production ├── contracts │ ├── Context.json │ ├── Counters.json │ ├── Item.json │ ├── ItemManager.json │ ├── Migrations.json │ ├── Order.json │ ├── Ownable.json │ ├── Timers.json │ └── VerifySignature.json ├── controllers │ ├── account.controller.js │ ├── index.js │ ├── infura.controller.js │ ├── item.controller.js │ └── order.controller.js ├── example.env ├── models │ ├── account.model.js │ ├── index.js │ ├── item.model.js │ └── order.model.js ├── package-lock.json ├── package.json ├── public │ ├── default.jpg │ └── pictures │ │ ├── avatars │ │ ├── .gitignore │ │ └── default.jpg │ │ └── items │ │ ├── .gitignore │ │ └── default.jpg ├── routes │ └── index.js └── server.js ├── test └── itemManager.js └── truffle-config.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.github/workflows/deploy-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/.github/workflows/deploy-production.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/README.md -------------------------------------------------------------------------------- /android_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/.gitignore -------------------------------------------------------------------------------- /android_app/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/.metadata -------------------------------------------------------------------------------- /android_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/README.md -------------------------------------------------------------------------------- /android_app/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/analysis_options.yaml -------------------------------------------------------------------------------- /android_app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/.gitignore -------------------------------------------------------------------------------- /android_app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/build.gradle -------------------------------------------------------------------------------- /android_app/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android_app/android/app/src/main/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/1024.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android_app/android/app/src/main/kotlin/com/example/android_app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/kotlin/com/example/android_app/MainActivity.kt -------------------------------------------------------------------------------- /android_app/android/app/src/main/play_store_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/play_store_512.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/drawable-hdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/drawable-hdpi/branding.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/drawable-mdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/drawable-mdpi/branding.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/drawable-v21/background.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/drawable-xhdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/drawable-xhdpi/branding.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/drawable-xxhdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/drawable-xxhdpi/branding.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/drawable-xxxhdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/drawable-xxxhdpi/branding.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /android_app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android_app/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android_app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/build.gradle -------------------------------------------------------------------------------- /android_app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/gradle.properties -------------------------------------------------------------------------------- /android_app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android_app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/android/settings.gradle -------------------------------------------------------------------------------- /android_app/assets/brand/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/assets/brand/1024.png -------------------------------------------------------------------------------- /android_app/assets/brand/brand_H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/assets/brand/brand_H.png -------------------------------------------------------------------------------- /android_app/assets/brand/brand_V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/assets/brand/brand_V.png -------------------------------------------------------------------------------- /android_app/assets/brand/play_store_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/assets/brand/play_store_512.png -------------------------------------------------------------------------------- /android_app/assets/brand/splash_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/assets/brand/splash_background.png -------------------------------------------------------------------------------- /android_app/assets/brand/splash_branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/assets/brand/splash_branding.png -------------------------------------------------------------------------------- /android_app/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/main.dart -------------------------------------------------------------------------------- /android_app/lib/models/account.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/models/account.dart -------------------------------------------------------------------------------- /android_app/lib/models/item_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/models/item_detail.dart -------------------------------------------------------------------------------- /android_app/lib/models/item_post.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/models/item_post.dart -------------------------------------------------------------------------------- /android_app/lib/models/order.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/models/order.dart -------------------------------------------------------------------------------- /android_app/lib/utils/clipboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/utils/clipboard.dart -------------------------------------------------------------------------------- /android_app/lib/utils/constants/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/utils/constants/theme.dart -------------------------------------------------------------------------------- /android_app/lib/utils/constants/url.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/utils/constants/url.dart -------------------------------------------------------------------------------- /android_app/lib/utils/ethereum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/utils/ethereum.dart -------------------------------------------------------------------------------- /android_app/lib/views/account/account_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views/account/account_view.dart -------------------------------------------------------------------------------- /android_app/lib/views/home/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views/home/home_view.dart -------------------------------------------------------------------------------- /android_app/lib/views/item/item_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views/item/item_view.dart -------------------------------------------------------------------------------- /android_app/lib/views/login/login_form_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views/login/login_form_view.dart -------------------------------------------------------------------------------- /android_app/lib/views/login/login_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views/login/login_view.dart -------------------------------------------------------------------------------- /android_app/lib/views/main_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views/main_screen.dart -------------------------------------------------------------------------------- /android_app/lib/views/my_items/my_items_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views/my_items/my_items_view.dart -------------------------------------------------------------------------------- /android_app/lib/views/my_order/covert_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views/my_order/covert_state.dart -------------------------------------------------------------------------------- /android_app/lib/views/my_order/my_order.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views/my_order/my_order.dart -------------------------------------------------------------------------------- /android_app/lib/views/my_order/order_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views/my_order/order_card.dart -------------------------------------------------------------------------------- /android_app/lib/views/payment/bill.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views/payment/bill.dart -------------------------------------------------------------------------------- /android_app/lib/views/payment/payment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views/payment/payment.dart -------------------------------------------------------------------------------- /android_app/lib/views/register/register_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views/register/register_view.dart -------------------------------------------------------------------------------- /android_app/lib/views/register/register_view_final.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views/register/register_view_final.dart -------------------------------------------------------------------------------- /android_app/lib/views/register/register_view_next.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views/register/register_view_next.dart -------------------------------------------------------------------------------- /android_app/lib/views/search/search_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views/search/search_view.dart -------------------------------------------------------------------------------- /android_app/lib/views_model/home/item_list_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views_model/home/item_list_view_model.dart -------------------------------------------------------------------------------- /android_app/lib/views_model/item/item_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views_model/item/item_view_model.dart -------------------------------------------------------------------------------- /android_app/lib/views_model/login/login_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views_model/login/login_view_model.dart -------------------------------------------------------------------------------- /android_app/lib/views_model/login/login_wallet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views_model/login/login_wallet.dart -------------------------------------------------------------------------------- /android_app/lib/views_model/my_items/my_items_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views_model/my_items/my_items_view_model.dart -------------------------------------------------------------------------------- /android_app/lib/views_model/my_order/my_order_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views_model/my_order/my_order_view_model.dart -------------------------------------------------------------------------------- /android_app/lib/views_model/payment/payment_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views_model/payment/payment_view_model.dart -------------------------------------------------------------------------------- /android_app/lib/views_model/register/register_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views_model/register/register_view_model.dart -------------------------------------------------------------------------------- /android_app/lib/views_model/search/search_item_list_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/views_model/search/search_item_list_view_model.dart -------------------------------------------------------------------------------- /android_app/lib/widgets/circular_progress_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/widgets/circular_progress_indicator.dart -------------------------------------------------------------------------------- /android_app/lib/widgets/item_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/widgets/item_card.dart -------------------------------------------------------------------------------- /android_app/lib/widgets/snack_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/lib/widgets/snack_bar.dart -------------------------------------------------------------------------------- /android_app/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/pubspec.lock -------------------------------------------------------------------------------- /android_app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/android_app/pubspec.yaml -------------------------------------------------------------------------------- /client/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/.dockerignore -------------------------------------------------------------------------------- /client/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/.env -------------------------------------------------------------------------------- /client/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/.env.production -------------------------------------------------------------------------------- /client/.github/workflows/deploy-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/.github/workflows/deploy-production.yml -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/Dockerfile -------------------------------------------------------------------------------- /client/Dockerfile.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/Dockerfile.development -------------------------------------------------------------------------------- /client/Dockerfile.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/Dockerfile.production -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/README.md -------------------------------------------------------------------------------- /client/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/example.env -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/background_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/public/background_cover.jpg -------------------------------------------------------------------------------- /client/public/brand_H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/public/brand_H.png -------------------------------------------------------------------------------- /client/public/brand_V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/public/brand_V.png -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/logo_F_blue_bgwhite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/public/logo_F_blue_bgwhite.jpg -------------------------------------------------------------------------------- /client/public/logo_F_primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/public/logo_F_primary.png -------------------------------------------------------------------------------- /client/public/logo_F_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/public/logo_F_white.png -------------------------------------------------------------------------------- /client/public/logo_F_white_bgblue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/public/logo_F_white_bgblue.jpg -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/metamask_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/public/metamask_logo.png -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/components/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/Error.js -------------------------------------------------------------------------------- /client/src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/Footer.js -------------------------------------------------------------------------------- /client/src/components/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/Login.js -------------------------------------------------------------------------------- /client/src/components/LoginError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/LoginError.js -------------------------------------------------------------------------------- /client/src/components/ModalTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/ModalTransaction.js -------------------------------------------------------------------------------- /client/src/components/NavigationBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/NavigationBar.js -------------------------------------------------------------------------------- /client/src/components/ToastAutoHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/ToastAutoHide.js -------------------------------------------------------------------------------- /client/src/components/check/CheckRawData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/check/CheckRawData.js -------------------------------------------------------------------------------- /client/src/components/check/CheckRawData.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/check/CheckRawData.test.js -------------------------------------------------------------------------------- /client/src/components/create/CreateButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/create/CreateButton.js -------------------------------------------------------------------------------- /client/src/components/create/CreateButton.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/create/CreateButton.test.js -------------------------------------------------------------------------------- /client/src/components/create/CreateItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/create/CreateItem.js -------------------------------------------------------------------------------- /client/src/components/create/CreateItem.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/create/CreateItem.test.js -------------------------------------------------------------------------------- /client/src/components/home/BuyButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/home/BuyButton.js -------------------------------------------------------------------------------- /client/src/components/home/BuyButton.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/home/BuyButton.test.js -------------------------------------------------------------------------------- /client/src/components/home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/home/Home.js -------------------------------------------------------------------------------- /client/src/components/home/Home.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/home/Home.test.js -------------------------------------------------------------------------------- /client/src/components/home/ItemCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/home/ItemCard.js -------------------------------------------------------------------------------- /client/src/components/home/ItemDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/home/ItemDetail.js -------------------------------------------------------------------------------- /client/src/components/home/ModalItemPicture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/home/ModalItemPicture.js -------------------------------------------------------------------------------- /client/src/components/home/ModalItemPicture.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/home/ModalItemPicture.test.js -------------------------------------------------------------------------------- /client/src/components/profile/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/profile/Avatar.js -------------------------------------------------------------------------------- /client/src/components/profile/DeliveryTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/profile/DeliveryTo.js -------------------------------------------------------------------------------- /client/src/components/profile/MyItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/profile/MyItem.js -------------------------------------------------------------------------------- /client/src/components/profile/MyOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/profile/MyOrder.js -------------------------------------------------------------------------------- /client/src/components/profile/Name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/profile/Name.js -------------------------------------------------------------------------------- /client/src/components/profile/OrderNextStep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/profile/OrderNextStep.js -------------------------------------------------------------------------------- /client/src/components/profile/OrderRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/profile/OrderRow.js -------------------------------------------------------------------------------- /client/src/components/profile/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/profile/Profile.js -------------------------------------------------------------------------------- /client/src/components/search/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/components/search/Search.js -------------------------------------------------------------------------------- /client/src/contracts/Context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/contracts/Context.json -------------------------------------------------------------------------------- /client/src/contracts/Counters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/contracts/Counters.json -------------------------------------------------------------------------------- /client/src/contracts/Item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/contracts/Item.json -------------------------------------------------------------------------------- /client/src/contracts/ItemManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/contracts/ItemManager.json -------------------------------------------------------------------------------- /client/src/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/contracts/Migrations.json -------------------------------------------------------------------------------- /client/src/contracts/Order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/contracts/Order.json -------------------------------------------------------------------------------- /client/src/contracts/Ownable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/contracts/Ownable.json -------------------------------------------------------------------------------- /client/src/contracts/Timers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/contracts/Timers.json -------------------------------------------------------------------------------- /client/src/contracts/VerifySignature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/contracts/VerifySignature.json -------------------------------------------------------------------------------- /client/src/getWeb3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/getWeb3.js -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/logo.svg -------------------------------------------------------------------------------- /client/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/client/src/serviceWorker.js -------------------------------------------------------------------------------- /contracts/Context.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/contracts/Context.sol -------------------------------------------------------------------------------- /contracts/Counters.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/contracts/Counters.sol -------------------------------------------------------------------------------- /contracts/Item.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/contracts/Item.sol -------------------------------------------------------------------------------- /contracts/ItemManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/contracts/ItemManager.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/Order.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/contracts/Order.sol -------------------------------------------------------------------------------- /contracts/Ownable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/contracts/Ownable.sol -------------------------------------------------------------------------------- /contracts/Timers.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/contracts/Timers.sol -------------------------------------------------------------------------------- /contracts/VeryfyingSignature.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/contracts/VeryfyingSignature.sol -------------------------------------------------------------------------------- /diagram.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/diagram.drawio -------------------------------------------------------------------------------- /docker-compose.development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/docker-compose.development.yml -------------------------------------------------------------------------------- /docker-compose.production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/docker-compose.production.yml -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /server/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/.dockerignore -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/Dockerfile.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/Dockerfile.development -------------------------------------------------------------------------------- /server/Dockerfile.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/Dockerfile.production -------------------------------------------------------------------------------- /server/contracts/Context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/contracts/Context.json -------------------------------------------------------------------------------- /server/contracts/Counters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/contracts/Counters.json -------------------------------------------------------------------------------- /server/contracts/Item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/contracts/Item.json -------------------------------------------------------------------------------- /server/contracts/ItemManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/contracts/ItemManager.json -------------------------------------------------------------------------------- /server/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/contracts/Migrations.json -------------------------------------------------------------------------------- /server/contracts/Order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/contracts/Order.json -------------------------------------------------------------------------------- /server/contracts/Ownable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/contracts/Ownable.json -------------------------------------------------------------------------------- /server/contracts/Timers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/contracts/Timers.json -------------------------------------------------------------------------------- /server/contracts/VerifySignature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/contracts/VerifySignature.json -------------------------------------------------------------------------------- /server/controllers/account.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/controllers/account.controller.js -------------------------------------------------------------------------------- /server/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/controllers/index.js -------------------------------------------------------------------------------- /server/controllers/infura.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/controllers/infura.controller.js -------------------------------------------------------------------------------- /server/controllers/item.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/controllers/item.controller.js -------------------------------------------------------------------------------- /server/controllers/order.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/controllers/order.controller.js -------------------------------------------------------------------------------- /server/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/example.env -------------------------------------------------------------------------------- /server/models/account.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/models/account.model.js -------------------------------------------------------------------------------- /server/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/models/index.js -------------------------------------------------------------------------------- /server/models/item.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/models/item.model.js -------------------------------------------------------------------------------- /server/models/order.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/models/order.model.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/package.json -------------------------------------------------------------------------------- /server/public/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/public/default.jpg -------------------------------------------------------------------------------- /server/public/pictures/avatars/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | */ 3 | !.gitignore -------------------------------------------------------------------------------- /server/public/pictures/avatars/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/public/pictures/avatars/default.jpg -------------------------------------------------------------------------------- /server/public/pictures/items/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | */ 3 | !.gitignore -------------------------------------------------------------------------------- /server/public/pictures/items/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/public/pictures/items/default.jpg -------------------------------------------------------------------------------- /server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/routes/index.js -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/server/server.js -------------------------------------------------------------------------------- /test/itemManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/test/itemManager.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FxLuc/NFTmarketplace/HEAD/truffle-config.js --------------------------------------------------------------------------------