claim.it is a project developped during 2019 ETHParis hackathon. Check it on DevPost.
.. were identity and claim smart contracts. ERC 725 and 735 had been receiving a whole lot of hype for several months, and the first robust implementations were finally starting to show up. But DApps taking advantage of their promising features were not there yet. In fact, neither were dev tools that would make it easier for the community to take over these new standards and make the most out of them.
At this point, the missing part was an easy-to-deploy dev tool to monitor and interact with standardized claim systems, showing an interface so friendly that it could even be integrated right away in final products.
- super simple : it runs with any Ethereum blockchain. Just specify the address of a claim registry, run
docker-compose up
and that's it ! A webapp is deployed showing you live all new claims from users to users in a nice intuitive way. Integration with your favorite browser wallet is supported out of the box and you can use it to create, transfer, update, delete and experiment with new claims in the blink of an eye. - exhaustive : all the claims you want to watch are there, in front of you, with all attached information updating live as new events occur.
- built to last : designed on emerging standards, the tool should smoothly adapt to identity and claim smart contract standards evolution.
- versatile : you can use claim.it as a dev tool to quickly experiment with claims. But everything is in place for you to just take the live stream of claims and integrate it to your own app for instance. The sky's the limit !
ERC 725 and 734 for identities, 735 for claims, 780 for claim registries. Studying in depth these new standards made it clear that some issues could already be solved regarding open discussions on these ERCs.
What would be the reason for multiple claim registries to compete ? Should a key manager contract always be separated from proxy ? etc.
We are quite proud of this time of reflection which happened to play a major role in the complete project, and we hope that our conclusions may be food for thought in the community.
The RESTful API, coded in Go around the Gin Gonic framework, backed by a MongoDB database, answers to clients' calls and reacts to on-chain events. It contextualizes and brings intelligence to on-chain claims.
The React webapp stays up-to-date live with push notifications and keeps the interface clean with features like full integration of the ENS resolver. It fully integrates with your favorite browser wallet to help you not only get access to enriched claims but also interact with them.
And if you are interested by data availability, the webapp may always be out there if you choose to deploy it with Arweave as we did for our demo !
.. a monitoring system for encrypted and traceable claims.
How is that ? claims store on-chain the issuer and recipient's addresses, most of the time together with an IPFS URI. Everything seems public and clear under these assumptions.
But what if:
- the claim stored on IPFS is encrypted
- identity smart contracts like ERC 725 show to the world your public key
- proxy-reencryption is used to deliver, in a trustless manner, private claims to new recipients while tracing claim holders
That is the best we can hope for claim.it. Maybe you could be a part of it ?