├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── land_registration │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── auth.svg ├── background_svg.svg ├── contract_owner_icon.jpg ├── github-logo.png ├── land_ins_icon.jpg ├── landimg.jpg └── user_icon.png ├── contracts ├── Migrations.sol └── landContrat.sol ├── lib ├── constant │ ├── constants.dart │ ├── loadingScreen.dart │ ├── routes.dart │ └── utils.dart ├── main.dart ├── providers │ ├── LandRegisterModel.dart │ └── MetamaskProvider.dart ├── screens │ ├── ChooseLandMap.dart │ ├── addLandInspector.dart │ ├── home_page.dart │ ├── land_inspector_dashboard.dart │ ├── registerUser.dart │ ├── transferOwnership.dart │ ├── user_dashboard.dart │ ├── viewLandDetails.dart │ └── wallet_connect.dart └── widget │ ├── header.dart │ ├── homePageDecription.dart │ ├── land_container.dart │ └── menu_item_tile.dart ├── migrations ├── 1_initial_migration.js └── 2_deploy_migration.js ├── pubspec.lock ├── pubspec.yaml ├── screenshots ├── Screenshot1.png ├── Screenshot10.png ├── Screenshot11.png ├── Screenshot12.png ├── Screenshot13.png ├── Screenshot14.png ├── Screenshot2.png ├── Screenshot3.png ├── Screenshot4.png ├── Screenshot5.png ├── Screenshot6.png ├── Screenshot7.png ├── Screenshot8.png ├── Screenshot9.png └── flowchart.png ├── src └── contracts │ ├── Land.json │ └── Migrations.json ├── truffle-config.js └── web ├── favicon.png ├── icons ├── Icon-192.png ├── Icon-512.png ├── Icon-maskable-192.png ├── Icon-maskable-512.png └── splash.png ├── index.html └── manifest.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/land_registration/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/app/src/main/kotlin/com/example/land_registration/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/auth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/assets/auth.svg -------------------------------------------------------------------------------- /assets/background_svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/assets/background_svg.svg -------------------------------------------------------------------------------- /assets/contract_owner_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/assets/contract_owner_icon.jpg -------------------------------------------------------------------------------- /assets/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/assets/github-logo.png -------------------------------------------------------------------------------- /assets/land_ins_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/assets/land_ins_icon.jpg -------------------------------------------------------------------------------- /assets/landimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/assets/landimg.jpg -------------------------------------------------------------------------------- /assets/user_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/assets/user_icon.png -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/landContrat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/contracts/landContrat.sol -------------------------------------------------------------------------------- /lib/constant/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/constant/constants.dart -------------------------------------------------------------------------------- /lib/constant/loadingScreen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/constant/loadingScreen.dart -------------------------------------------------------------------------------- /lib/constant/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/constant/routes.dart -------------------------------------------------------------------------------- /lib/constant/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/constant/utils.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/providers/LandRegisterModel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/providers/LandRegisterModel.dart -------------------------------------------------------------------------------- /lib/providers/MetamaskProvider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/providers/MetamaskProvider.dart -------------------------------------------------------------------------------- /lib/screens/ChooseLandMap.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/screens/ChooseLandMap.dart -------------------------------------------------------------------------------- /lib/screens/addLandInspector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/screens/addLandInspector.dart -------------------------------------------------------------------------------- /lib/screens/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/screens/home_page.dart -------------------------------------------------------------------------------- /lib/screens/land_inspector_dashboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/screens/land_inspector_dashboard.dart -------------------------------------------------------------------------------- /lib/screens/registerUser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/screens/registerUser.dart -------------------------------------------------------------------------------- /lib/screens/transferOwnership.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/screens/transferOwnership.dart -------------------------------------------------------------------------------- /lib/screens/user_dashboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/screens/user_dashboard.dart -------------------------------------------------------------------------------- /lib/screens/viewLandDetails.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/screens/viewLandDetails.dart -------------------------------------------------------------------------------- /lib/screens/wallet_connect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/screens/wallet_connect.dart -------------------------------------------------------------------------------- /lib/widget/header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/widget/header.dart -------------------------------------------------------------------------------- /lib/widget/homePageDecription.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/widget/homePageDecription.dart -------------------------------------------------------------------------------- /lib/widget/land_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/widget/land_container.dart -------------------------------------------------------------------------------- /lib/widget/menu_item_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/lib/widget/menu_item_tile.dart -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/migrations/2_deploy_migration.js -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/screenshots/Screenshot1.png -------------------------------------------------------------------------------- /screenshots/Screenshot10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/screenshots/Screenshot10.png -------------------------------------------------------------------------------- /screenshots/Screenshot11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/screenshots/Screenshot11.png -------------------------------------------------------------------------------- /screenshots/Screenshot12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/screenshots/Screenshot12.png -------------------------------------------------------------------------------- /screenshots/Screenshot13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/screenshots/Screenshot13.png -------------------------------------------------------------------------------- /screenshots/Screenshot14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/screenshots/Screenshot14.png -------------------------------------------------------------------------------- /screenshots/Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/screenshots/Screenshot2.png -------------------------------------------------------------------------------- /screenshots/Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/screenshots/Screenshot3.png -------------------------------------------------------------------------------- /screenshots/Screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/screenshots/Screenshot4.png -------------------------------------------------------------------------------- /screenshots/Screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/screenshots/Screenshot5.png -------------------------------------------------------------------------------- /screenshots/Screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/screenshots/Screenshot6.png -------------------------------------------------------------------------------- /screenshots/Screenshot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/screenshots/Screenshot7.png -------------------------------------------------------------------------------- /screenshots/Screenshot8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/screenshots/Screenshot8.png -------------------------------------------------------------------------------- /screenshots/Screenshot9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/screenshots/Screenshot9.png -------------------------------------------------------------------------------- /screenshots/flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/screenshots/flowchart.png -------------------------------------------------------------------------------- /src/contracts/Land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/src/contracts/Land.json -------------------------------------------------------------------------------- /src/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/src/contracts/Migrations.json -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/truffle-config.js -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/icons/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/web/icons/splash.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saurabh-m-w/Blockchain-Based-Property-Registration/HEAD/web/manifest.json --------------------------------------------------------------------------------