{"id":48257635,"url":"https://github.com/bootstrapsp/miu","last_synced_at":"2026-04-04T21:19:29.627Z","repository":{"id":43358739,"uuid":"200396570","full_name":"bootstrapsp/miu","owner":"bootstrapsp","description":"Developing with Hyperledger Indy made easy.","archived":false,"fork":false,"pushed_at":"2026-02-01T11:10:38.000Z","size":338,"stargazers_count":4,"open_issues_count":18,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-01T20:58:00.763Z","etag":null,"topics":["blockchain-technology","golang","grpc-python","hyperledger-indy","iot-application","security"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bootstrapsp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-08-03T16:21:50.000Z","updated_at":"2022-03-05T21:46:23.000Z","dependencies_parsed_at":"2025-07-13T11:27:10.587Z","dependency_job_id":"d9740e0f-714a-4c9a-b0a5-b3e48bdd3e10","html_url":"https://github.com/bootstrapsp/miu","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/bootstrapsp/miu","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bootstrapsp%2Fmiu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bootstrapsp%2Fmiu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bootstrapsp%2Fmiu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bootstrapsp%2Fmiu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bootstrapsp","download_url":"https://codeload.github.com/bootstrapsp/miu/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bootstrapsp%2Fmiu/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31414679,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T20:09:54.854Z","status":"ssl_error","status_checked_at":"2026-04-04T20:09:44.350Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blockchain-technology","golang","grpc-python","hyperledger-indy","iot-application","security"],"created_at":"2026-04-04T21:19:28.899Z","updated_at":"2026-04-04T21:19:29.618Z","avatar_url":"https://github.com/bootstrapsp.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Miu\n\nMiu is a [gRPC](https://grpc.io/) based python server enabling developers to easily connect and develop [Hyperledger Indy](https://www.hyperledger.org/projects/hyperledger-indy) based clients using Hyperledger Indy SDK.\n\n## Overview\n\nMiu introduces all the goodness of gRPC and writing Indy client in your favourite programing language, the ones supported by gRPC. Extending the list of programing languages in which the Indy SDK is currently provided see [libindy SDK](https://github.com/hyperledger/indy-sdk)\n\n## Motivation\n\nBeing able to code Indy clients in Golang. :D\n\n## Concept\n\nMiu is implemented in gRPC python using the [Indy SDK for Python](https://github.com/hyperledger/indy-sdk/blob/master/wrappers/python/README.md). This now allows us to build Hyperledger Indy SDK based clients using gRPC which can communicate with Miu in high performant [Protobuf](https://developers.google.com/protocol-buffers/) protocol.\n\n### Design Overview\n\nHere's a quick concept overview [Miu-Approach](https://github.com/bootstrapsp/miu/files/3666644/Miu-Approach.pdf)\n\n## Current state with this release\n\nCurrent release covers implementation for most of the modules from Indy SDK, precisely speaking :\n\n* Anoncreds\n* Blob Storage\n* Crypto\n* DID\n* Ledger\n* NonSecret\n* Pairwise\n* Pool\n* Wallet\n\n### Project structure\n\n**grpc_server** folder contains Indy SDK module implementation in python\n\n**identityLayer** folder contains all the proto files describing the gRPC structure with RPCs and messages\n\n**config.json** used for configuring the indy node IP address and the pool transaction genesis file.\n\nNote: You'll need to add pool_transactions_genesis file first before configuring in the config.json\n\n## Installation and trying out\n\n### Pre-req\n\nYou'll need Indy node / Server before going through with steps defined below. See [How to install Test network](https://github.com/hyperledger/indy-node#how-to-install-a-test-network). \n\nOnce ready use following steps to start with Miu setup\n\n1. Install python 3\n```\nsudo add-apt-repository ppa:deadsnakes/ppa\nsudo apt-get update\nsudo apt-get install python3.6\n```\n\n2. Clone [miu](https://github.com/bootstrapsp/miu.git) repository\n\n3. CD into the location where you have cloned\n\n4. Create virtualenv:\n\n```\npython3 -m venv my_venv\n```\n\n5. Activate virtualenv\n\n```\n    source ./my_venv/bin/activate\n```\n\n6. Install Dependencies\n\n```\npip install -r requirements.txt\n```\n\n7. Run the miu interface\n```\npython server.py\n```\n\nThis will start the server on localhost:50051. You then will have to connect your gRPC client to this. \n\n## What's next\n\nOf course we'd appreciate help to further enhance this project. Post this alpha release we are looking to work on\n\n* Fixing bugs to stablize this release\n* Writing test cases for the Miu interface for automated testing\n* Enhanced logging\n* And more...\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbootstrapsp%2Fmiu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbootstrapsp%2Fmiu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbootstrapsp%2Fmiu/lists"}