├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── ai-engine ├── init.py ├── main.py └── models │ ├── data.py │ └── model.py ├── blockchain ├── block.go ├── blockchain.go ├── consensus.go ├── contracts │ ├── EcoPulseDAO.sol │ ├── EcoPulseNFT.sol │ └── EcoPulseToken.sol ├── node │ ├── config.go │ ├── ecopulse_node.go │ └── network.go └── transaction.go ├── defi-platform ├── borrowing │ └── borrowing_platform.py └── lending │ └── lending_platform.py ├── docs ├── EcoPulse-Ecosystem.jpeg ├── guides │ ├── architecture.md │ └── getting_started.md └── tutorials │ └── building_an_app.md ├── iot-infrastructure ├── devices │ ├── controller.py │ ├── device.py │ └── init.py └── sensors │ ├── init.py │ └── sensor.py └── sdk ├── libraries └── crypto_library.py └── tools ├── cli_tool.py └── config_manager.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/README.md -------------------------------------------------------------------------------- /ai-engine/init.py: -------------------------------------------------------------------------------- 1 | # Initialize the ai-engine package 2 | -------------------------------------------------------------------------------- /ai-engine/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/ai-engine/main.py -------------------------------------------------------------------------------- /ai-engine/models/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/ai-engine/models/data.py -------------------------------------------------------------------------------- /ai-engine/models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/ai-engine/models/model.py -------------------------------------------------------------------------------- /blockchain/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/blockchain/block.go -------------------------------------------------------------------------------- /blockchain/blockchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/blockchain/blockchain.go -------------------------------------------------------------------------------- /blockchain/consensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/blockchain/consensus.go -------------------------------------------------------------------------------- /blockchain/contracts/EcoPulseDAO.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/blockchain/contracts/EcoPulseDAO.sol -------------------------------------------------------------------------------- /blockchain/contracts/EcoPulseNFT.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/blockchain/contracts/EcoPulseNFT.sol -------------------------------------------------------------------------------- /blockchain/contracts/EcoPulseToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/blockchain/contracts/EcoPulseToken.sol -------------------------------------------------------------------------------- /blockchain/node/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/blockchain/node/config.go -------------------------------------------------------------------------------- /blockchain/node/ecopulse_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/blockchain/node/ecopulse_node.go -------------------------------------------------------------------------------- /blockchain/node/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/blockchain/node/network.go -------------------------------------------------------------------------------- /blockchain/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/blockchain/transaction.go -------------------------------------------------------------------------------- /defi-platform/borrowing/borrowing_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/defi-platform/borrowing/borrowing_platform.py -------------------------------------------------------------------------------- /defi-platform/lending/lending_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/defi-platform/lending/lending_platform.py -------------------------------------------------------------------------------- /docs/EcoPulse-Ecosystem.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/docs/EcoPulse-Ecosystem.jpeg -------------------------------------------------------------------------------- /docs/guides/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/docs/guides/architecture.md -------------------------------------------------------------------------------- /docs/guides/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/docs/guides/getting_started.md -------------------------------------------------------------------------------- /docs/tutorials/building_an_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/docs/tutorials/building_an_app.md -------------------------------------------------------------------------------- /iot-infrastructure/devices/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/iot-infrastructure/devices/controller.py -------------------------------------------------------------------------------- /iot-infrastructure/devices/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/iot-infrastructure/devices/device.py -------------------------------------------------------------------------------- /iot-infrastructure/devices/init.py: -------------------------------------------------------------------------------- 1 | # Initialize the devices package 2 | -------------------------------------------------------------------------------- /iot-infrastructure/sensors/init.py: -------------------------------------------------------------------------------- 1 | # Initialize the sensors package 2 | -------------------------------------------------------------------------------- /iot-infrastructure/sensors/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/iot-infrastructure/sensors/sensor.py -------------------------------------------------------------------------------- /sdk/libraries/crypto_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/sdk/libraries/crypto_library.py -------------------------------------------------------------------------------- /sdk/tools/cli_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/sdk/tools/cli_tool.py -------------------------------------------------------------------------------- /sdk/tools/config_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/ecopulse-ecosystem/HEAD/sdk/tools/config_manager.py --------------------------------------------------------------------------------