├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── ai └── models │ ├── decision_support_model.py │ └── resource_optimization_model.py ├── api └── api.py ├── blockchain ├── consensus │ ├── consensus.py │ ├── neural_network_consensus.py │ └── quantum_resistant_cryptography.py └── contracts │ ├── data_contract.sol │ └── token_contract.sol ├── data ├── iot_data.py └── sensor_data.py ├── docs ├── neurochain-harmony.jpeg ├── neurochain_harmony_paper.md ├── neurochain_harmony_resources.md ├── neurochain_harmony_technical_guide.md └── neurochain_harmony_user_manual.md ├── explorer └── web │ ├── index.html │ └── script.js ├── iot └── device_integration │ └── device_driver.py ├── network ├── network.py └── network_config.json ├── node ├── node.py └── node_config.json ├── quantum ├── quantum_computing_integration.py └── quantum_resistant_cryptography.py ├── sdk ├── javascript │ └── neurochainHarmony.js └── python │ └── neurochain_harmony.py ├── sensor_data_management └── sensor_data_processor.py ├── tests ├── test_consensus.py └── test_contracts.py ├── token ├── token_contract.sol └── token_migration.py ├── tools └── cli.py └── utils ├── math_utils.py └── string_utils.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/README.md -------------------------------------------------------------------------------- /ai/models/decision_support_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/ai/models/decision_support_model.py -------------------------------------------------------------------------------- /ai/models/resource_optimization_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/ai/models/resource_optimization_model.py -------------------------------------------------------------------------------- /api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/api/api.py -------------------------------------------------------------------------------- /blockchain/consensus/consensus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/blockchain/consensus/consensus.py -------------------------------------------------------------------------------- /blockchain/consensus/neural_network_consensus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/blockchain/consensus/neural_network_consensus.py -------------------------------------------------------------------------------- /blockchain/consensus/quantum_resistant_cryptography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/blockchain/consensus/quantum_resistant_cryptography.py -------------------------------------------------------------------------------- /blockchain/contracts/data_contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/blockchain/contracts/data_contract.sol -------------------------------------------------------------------------------- /blockchain/contracts/token_contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/blockchain/contracts/token_contract.sol -------------------------------------------------------------------------------- /data/iot_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/data/iot_data.py -------------------------------------------------------------------------------- /data/sensor_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/data/sensor_data.py -------------------------------------------------------------------------------- /docs/neurochain-harmony.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/docs/neurochain-harmony.jpeg -------------------------------------------------------------------------------- /docs/neurochain_harmony_paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/docs/neurochain_harmony_paper.md -------------------------------------------------------------------------------- /docs/neurochain_harmony_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/docs/neurochain_harmony_resources.md -------------------------------------------------------------------------------- /docs/neurochain_harmony_technical_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/docs/neurochain_harmony_technical_guide.md -------------------------------------------------------------------------------- /docs/neurochain_harmony_user_manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/docs/neurochain_harmony_user_manual.md -------------------------------------------------------------------------------- /explorer/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/explorer/web/index.html -------------------------------------------------------------------------------- /explorer/web/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/explorer/web/script.js -------------------------------------------------------------------------------- /iot/device_integration/device_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/iot/device_integration/device_driver.py -------------------------------------------------------------------------------- /network/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/network/network.py -------------------------------------------------------------------------------- /network/network_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/network/network_config.json -------------------------------------------------------------------------------- /node/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/node/node.py -------------------------------------------------------------------------------- /node/node_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/node/node_config.json -------------------------------------------------------------------------------- /quantum/quantum_computing_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/quantum/quantum_computing_integration.py -------------------------------------------------------------------------------- /quantum/quantum_resistant_cryptography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/quantum/quantum_resistant_cryptography.py -------------------------------------------------------------------------------- /sdk/javascript/neurochainHarmony.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/sdk/javascript/neurochainHarmony.js -------------------------------------------------------------------------------- /sdk/python/neurochain_harmony.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/sdk/python/neurochain_harmony.py -------------------------------------------------------------------------------- /sensor_data_management/sensor_data_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/sensor_data_management/sensor_data_processor.py -------------------------------------------------------------------------------- /tests/test_consensus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/tests/test_consensus.py -------------------------------------------------------------------------------- /tests/test_contracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/tests/test_contracts.py -------------------------------------------------------------------------------- /token/token_contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/token/token_contract.sol -------------------------------------------------------------------------------- /token/token_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/token/token_migration.py -------------------------------------------------------------------------------- /tools/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/tools/cli.py -------------------------------------------------------------------------------- /utils/math_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/utils/math_utils.py -------------------------------------------------------------------------------- /utils/string_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/neurochain-harmony/HEAD/utils/string_utils.py --------------------------------------------------------------------------------