You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It may be convenient to add a sender field to notes. This field will contain account ID of the account which created the note. This field could then be used by note consumers as a reliable way determining note origin.
The sender field would need to be set in the transaction kernel at the time a note is created (i.e., via create_note procedure).
To add this field we'll need to re-define note hash and nullifier computations as follows:
The main drawback of this change is that it requires one extra hash when computing a note hash (however, nullifier computation complexity remains the same).
The text was updated successfully, but these errors were encountered:
It may be convenient to add a
sender
field to notes. This field will contain account ID of the account which created the note. This field could then be used by note consumers as a reliable way determining note origin.The
sender
field would need to be set in the transaction kernel at the time a note is created (i.e., viacreate_note
procedure).To add this field we'll need to re-define note hash and nullifier computations as follows:
The main drawback of this change is that it requires one extra hash when computing a note hash (however, nullifier computation complexity remains the same).
The text was updated successfully, but these errors were encountered: