We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NoteMetadata
Currently note-related messages in protobuf contain the same fields. These should be refactored out into its own NoteMetadata object
https://github.com/0xPolygonMiden/miden-node/blob/25529ac9bc629e4ac1f0d2c8bc9739b0d1bc2866/proto/proto/note.proto
Change messages to include a new NoteMetadata field that looks something like this:
message NoteMetadata { account.AccountId sender = 1; uint32 note_type = 2; fixed32 tag = 3; fixed64 aux = 4; // unsure if we want/need this for a first iteration }
and replaces the pertinent fields.
When note messages contain NoteMetadata as a specific field.
No response
The text was updated successfully, but these errors were encountered:
NoteType
Closed by #338.
Sorry, something went wrong.
igamigo
No branches or pull requests
Node's components affected by this task
What should be done?
Currently note-related messages in protobuf contain the same fields. These should be refactored out into its own
NoteMetadata
objectHow should it be done?
https://github.com/0xPolygonMiden/miden-node/blob/25529ac9bc629e4ac1f0d2c8bc9739b0d1bc2866/proto/proto/note.proto
Change messages to include a new
NoteMetadata
field that looks something like this:and replaces the pertinent fields.
When is this task done?
When note messages contain NoteMetadata as a specific field.
Additional context
No response
The text was updated successfully, but these errors were encountered: