I am about to implement a KYC solution on Multichain, part of a few things we are doing, and would like some feedback:
1. Create a chain called "KYC"
2. Add a stream called KYC (or leave as root)
3. Add publishers who are recognized as able to do KYC for customers or merchants
4. Publishers write a stream with the key being a a hash of the user full name and email, or the company name, country code and registration number, and the data being their company name followed by KYC1, KYC2, KYC3 for users and KYCA, KYCB etc for merchants. the KYC code would be standard to show what level of KYC was done. Would be nice if I could have another field to separate the publisher name and the KYC status
5. API provided so any company can check on KYC status of a user, so they don't have to do it again. User has to provide their name and email so that can be checked against the hash.
6. KYC Publishers have access to the blockchain explorer if needed.
I don't see a need for encryption of data in this case - what we are doing is putting up simple virtual identities that can be checked by KYC publishers or companies that we give access via the API - we could charge a tiny amount for finding a valid KYC status that can go to the publisher to help offset or pay for costs of doing the KYC in the first place (This would be done via the API, no in blockchain)
So that's a simple setup, if there is anything anyone can add to improve on it?