Kudos is an application that defines kudos denomination interface and describes how different denominations work. Kudos denominations might have some meaning assigned to them (e.g., money, trust, etc), but we will ignore the meanings here.
Note about the existing kudos application
If you are reading this and wondering about the existing kudos application: I’m aware it exists. The goals of this post are:
- develop a clear abstraction for the kudos application that doesn’t make decisions about individual denomination policies
- produce a written description of the developed abstraction (with diagrams) that can be referenced by the implementation
- ensure that the proposed design is compatible with the privacy goals [1]
Logic layers
The kudos application framework can be split into two parts:
- Kudos application logic (KL) defines what a valid denomination is and specifies how to issue and govern denominations.
- Denomination logic (DL) is a denomination-specific authorisation logic.
A kudos transaction is valid if it satisfies the kudos application logic and the denomination logic [2].
Desired denomination behaviour
We want any kudos denomination to allow:
- issuing and burning kudos
- doubly permissioned kudos transfer
- kudos-to-anything swap
At the same time, we want to abstract away the authorisation logic of a particular denomination.
The high level idea
- A kudos resource of any denomination has KL in the logic field
- The denomination label includes the issuer’s pubkey and the verifying key of the DL
- KL requires a resource with the specified in the label DL be present in the transaction to authorise the action
Involved resource kinds:
- kudos denomination resource resource (kudos application logic)
- denomination authorisation resource (denomination authorisation logic)
- receive authorisation resource (receive authorisation logic)
- intent carrying resource (intent logic)
Specific transaction functions
Issue and burn kudos
We start with issuing and burning kudos since they are pretty similar to each other and are the simplest action possible.
- On the diagram, the grey resources correspond to kudos resources of denomination
#n
and the green resources represent the denomination#n
authorisation logic. - KL requires a resource with a DL from the label to be present in the same action. The DL resource verifies the issuance conditions specific to that denomination.
- The same idea works for burning, except that now we consume a persistent resource instead of creating a persistent resource.
- The denomination resource can be ephemeral and have a zero value, we only need to trigger the logic verification.
Transferring kudos with conditional receive
To allow specifying receive policies, we need to require a receiver-specific logic (RL) to be verified. This implies we need a resource that carries that RL. RL cannot be a part of DL since it isn’t associated with the denomination, it is associated with the receiver. RL presence requirement must be a part of the kudos logic (i.e., required for all denominations), otherwise the malicious sender can always create a denomination that doesn’t require it and send it to the desired receiver.
- As in the issue/burn case, we need to trigger the corresponding DL
- To bind the receive authorisation logic to the action, KL requires that there is a resource in the same action that is associated with the specified receiver’s pubkey
- To make sure the authorisation logic is indeed created by the receiver, the receive authorisation resource must contain a signature over the authorisation logic. This signature must be verified by KL
- As for DL, RL only triggers the logic and therefore can be ephemeral and zero value
Kudos-to-anything swap
- The binding mechanism here is similar to the RL binding. The intent resource is identified by the owner of the consumed kudo and the logic (IL) must be signed by the owner and verified in the KL
- The difference compared to the previous case here is that we need to explicitly specify what the unbalanced transaction looks like (left rectangle), and how to balance it (right rectangle)
- We don’t need to explicitly specify how to swap kudos for kudos. If the IL requires a kudo, it produces a kudo-to-kudo swap. Otherwise it can be a kudo-to-anything swap, which allows for more generality
Transaction functions and constraints for KL
TF | Description |
---|---|
Issue | A peristent resource is created, balanced by an ephemeral resource. There must be another resource with a logic specified in the kudo label |
Burn | A peristent resource is consumed, balanced by an ephemeral resource. There must be another resource with a logic specified in the kudo label |
Transfer | A peristent resource is consumed, balanced by an identical persistent resource with a different owner. There must be a resource with a logic specified in the kudo label. There must be a resource with a logic signed by the owner of the created persistent resource. |
Swap | A peristent resource is consumed. There must be a resource with a logic specified in the kudo label. There must be a resource with a logic signed by the owner of the created persistent resource. |
Ephemerality | TF | Constraints | |
---|---|---|---|
Create | Ephemeral | (Only burn) | There must be (an identical) consumed persistent resource |
Persistent | Transfer | There must be (an otherwise identical) consumed persistent resource with a different owner. There must be another resource with a logic signed by self owner | |
Issue | There must be (an identical) consumed ephemeral resource | ||
Consume | Ephemeral | (Only issue) | There must be (an identical) created persistent resource. There must be a resource with a logic specified in the self label |
Persistent | Burn | There must be (an identical) created ephemeral resource. There must be a resource with a logic specified in the self label | |
Transfer | There must be (an identical) created persistent resource.There must be a resource with a logic specified in the self label | ||
Swap | There must be a resource with a logic specified in the self label. There must be a resource with a logic signed by self owner |
Resources
- Scale-free kudos: brainstorming thread
- https://research.anoma.net/t/basic-e2e-shielded-kudos-app/1237
- https://research.anoma.net/t/cryptography-and-apps-q2-priorities/1266
- anoma-apps/Kudos at main · anoma/anoma-apps · GitHub