Skip to main content
Version: v0.83.1-alpha-testnet.0

TokenNoteProperties

/ Generates note properties struct for a given note struct s. / / Example: / ```

TokenNoteFields_5695262104

/ Generates note export for a given note struct s. The export is a global variable that contains note type id, / note name and information about note fields (field name, index and whether the field is nullable or not). / / Example: / ```

CustomNote

/ Generates code for a custom note implementation that requires specialized note hash or nullifier computation. / / # Generated Code / - NoteTypeProperties: Defines the structure and properties of note fields / - NoteType trait implementation: Provides the note type ID / - Packable implementation: Enables serialization/deserialization of the note / / # Registration / Registers the note in the global NOTES map with: / - Note type ID / - Packed length / - Field indices and nullability / / # Use Cases / Use this macro when implementing a note that needs custom: / - Note hash computation logic / - Nullifier computation logic / / The macro omits generating default NoteHash trait implementation, allowing you to provide your own. / / # Example / ``` / #[custom_note]

Standalone Functions

get_next_note_type_id

get_next_note_type_id();

Takes no parameters.

derive_packable_if_not_implemented_and_get_len

derive_packable_if_not_implemented_and_get_len(s);

Parameters

NameType
sTypeDefinition

get_id

get_id();

Takes no parameters.

generate_note_interface

generate_note_interface(s, note_type_id);

Parameters

NameType
sTypeDefinition
note_type_idField

get_id

get_id();

Takes no parameters.

compute_note_hash

compute_note_hash(self, storage_slot);

Parameters

NameType
self
storage_slotField

compute_nullifier

compute_nullifier(self, context, note_hash_for_nullify);

Parameters

NameType
self
context&mut PrivateContext
note_hash_for_nullifyField

compute_nullifier_unconstrained

compute_nullifier_unconstrained(note_hash_for_nullify);

Parameters

NameType
note_hash_for_nullifyField

generate_note_hash_trait_impl

generate_note_hash_trait_impl(s);

Parameters

NameType
sTypeDefinition

compute_note_hash

compute_note_hash(self, storage_slot);

Parameters

NameType
self
storage_slotField

compute_nullifier

compute_nullifier(self, context, note_hash_for_nullify, );

Parameters

NameType
self
context&mut aztec
note_hash_for_nullifyField

compute_nullifier_unconstrained

compute_nullifier_unconstrained(self, note_hash_for_nullify, );

Parameters

NameType
self
note_hash_for_nullifyField

properties

properties();

Takes no parameters.

generate_note_properties

generate_note_properties(s);

Parameters

NameType
sTypeDefinition

properties

properties();

Takes no parameters.

generate_note_export

generate_note_export(s, note_type_id, fields, u32, bool);

Parameters

NameType
sTypeDefinition
note_type_idField
fields[(Quoted
u32
bool

register_note

register_note(note, note_packed_len, note_type_id, fixed_fields, Type, u32);

Parameters

NameType
noteTypeDefinition
note_packed_lenu32
note_type_idField
fixed_fields[(Quoted
Type
u32

index_note_fields

index_note_fields(s, nullable_fields, );

Parameters

NameType
sTypeDefinition
nullable_fields[Quoted]

note

note(s);

Parameters

NameType
sTypeDefinition

compute_note_hash

compute_note_hash(.);

Parameters

NameType
.

compute_nullifier

compute_nullifier(.);

Parameters

NameType
.

compute_nullifier_unconstrained

compute_nullifier_unconstrained(.);

Parameters

NameType
.

custom_note

custom_note(s);

Parameters

NameType
sTypeDefinition

assert_has_owner

assert_has_owner(note);

Parameters

NameType
noteTypeDefinition