Replies: 2 comments
-
A suggestion on how we could use the identity pallet (After M5, because of the complex re-factoring involved)
For M5, All new function can just be included in the Tenancy pallet |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Use of Identity pallet with few additions
Dispatchable Functions in Identity pallet (Only the ones we might use)
For general users = Tenant
set_identity
- Set the associated identity of an account; a small deposit is reserved if not already taken.clear_identity
- Remove an account's associated identity; the deposit is returned.request_judgement
- Request a judgement from a registrar, paying a fee.cancel_request
- Cancel the previous request for a judgement.For registrars = Representative
set_fee
- Set the fee required to be paid for a judgement to be given by the registrar.set_fields
- Set the fields that a registrar cares about in their judgements.provide_judgement
- Provide a judgement to an identity.For super-users = Virtual account
add_registrar
- Add a new registrar to the system.kill_identity
- Forcibly remove the associated identity; the deposit is lostBeta Was this translation helpful? Give feedback.
All reactions