├── Map.net.xml ├── Paths.edg.xml ├── Points.nod.xml ├── Route.rou.xml ├── SmartContract.abi ├── Sumo.sumocfg ├── Types.type.xml ├── VIoT-VANET-Blockchain_Integration.py ├── VIoT-VANET_Integration.py ├── VIoT_Integration.py ├── address.txt ├── contracts ├── .gitkeep └── SmartContract.sol ├── migrations ├── .gitkeep └── 2_deploy_contracts.js ├── package.json ├── readme.txt ├── test └── .gitkeep └── truffle-config.js /Map.net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantoshPenugurthi/AI-Integrated-Blockchain-for-Autonomous-Vehicles/HEAD/Map.net.xml -------------------------------------------------------------------------------- /Paths.edg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantoshPenugurthi/AI-Integrated-Blockchain-for-Autonomous-Vehicles/HEAD/Paths.edg.xml -------------------------------------------------------------------------------- /Points.nod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantoshPenugurthi/AI-Integrated-Blockchain-for-Autonomous-Vehicles/HEAD/Points.nod.xml -------------------------------------------------------------------------------- /Route.rou.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantoshPenugurthi/AI-Integrated-Blockchain-for-Autonomous-Vehicles/HEAD/Route.rou.xml -------------------------------------------------------------------------------- /SmartContract.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantoshPenugurthi/AI-Integrated-Blockchain-for-Autonomous-Vehicles/HEAD/SmartContract.abi -------------------------------------------------------------------------------- /Sumo.sumocfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantoshPenugurthi/AI-Integrated-Blockchain-for-Autonomous-Vehicles/HEAD/Sumo.sumocfg -------------------------------------------------------------------------------- /Types.type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantoshPenugurthi/AI-Integrated-Blockchain-for-Autonomous-Vehicles/HEAD/Types.type.xml -------------------------------------------------------------------------------- /VIoT-VANET-Blockchain_Integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantoshPenugurthi/AI-Integrated-Blockchain-for-Autonomous-Vehicles/HEAD/VIoT-VANET-Blockchain_Integration.py -------------------------------------------------------------------------------- /VIoT-VANET_Integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantoshPenugurthi/AI-Integrated-Blockchain-for-Autonomous-Vehicles/HEAD/VIoT-VANET_Integration.py -------------------------------------------------------------------------------- /VIoT_Integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantoshPenugurthi/AI-Integrated-Blockchain-for-Autonomous-Vehicles/HEAD/VIoT_Integration.py -------------------------------------------------------------------------------- /address.txt: -------------------------------------------------------------------------------- 1 | 0xC164431f5082cC95D0ceb4268299DD3F8ceA9c54 -------------------------------------------------------------------------------- /contracts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contracts/SmartContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantoshPenugurthi/AI-Integrated-Blockchain-for-Autonomous-Vehicles/HEAD/contracts/SmartContract.sol -------------------------------------------------------------------------------- /migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantoshPenugurthi/AI-Integrated-Blockchain-for-Autonomous-Vehicles/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantoshPenugurthi/AI-Integrated-Blockchain-for-Autonomous-Vehicles/HEAD/package.json -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantoshPenugurthi/AI-Integrated-Blockchain-for-Autonomous-Vehicles/HEAD/readme.txt -------------------------------------------------------------------------------- /test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SantoshPenugurthi/AI-Integrated-Blockchain-for-Autonomous-Vehicles/HEAD/truffle-config.js --------------------------------------------------------------------------------