Skip to main content

NoteStageEnum

Fields

FieldType
PENDING_SAME_PHASEu8
PENDING_PREVIOUS_PHASEu8
SETTLEDu8

NoteMetadata

Fields

FieldType
stageu8
maybe_nonceField

Methods

from_raw_data

/ Constructs a NoteMetadata object from optional note hash counter and nonce. Both a zero note hash counter and / a zero nonce are invalid, so those are used to signal non-existent values.

NoteMetadata::from_raw_data(nonzero_note_hash_counter, maybe_nonce);

Parameters

NameType
nonzero_note_hash_counterbool
maybe_nonceField

is_pending_same_phase

/ Returns true if the note is pending and from the same phase, i.e. if it's been created in the current / transaction during the current execution phase (either non-revertible or revertible).

NoteMetadata::is_pending_same_phase(self);

Parameters

NameType
self

is_pending_previous_phase

/ Returns true if the note is pending and from the previous phase, i.e. if it's been created in the current / transaction during an execution phase prior to the current one. Because private execution only has two phases / with strict ordering, this implies that the note was created in the non-revertible phase, and that the current / phase is the revertible phase.

NoteMetadata::is_pending_previous_phase(self);

Parameters

NameType
self

is_settled

/ Returns true if the note is settled, i.e. if it's been created in a prior transaction and is therefore already / in the note hash tree.

NoteMetadata::is_settled(self);

Parameters

NameType
self

to_pending_same_phase

/ Asserts that the metadata is that of a pending note from the same phase and converts it accordingly.

NoteMetadata::to_pending_same_phase(self);

Parameters

NameType
self

to_pending_previous_phase

/ Asserts that the metadata is that of a pending note from a previous phase and converts it accordingly.

NoteMetadata::to_pending_previous_phase(self);

Parameters

NameType
self

to_settled

/ Asserts that the metadata is that of a settled note and converts it accordingly.

NoteMetadata::to_settled(self);

Parameters

NameType
self

PendingSamePhaseNoteMetadata

/ The metadata required to both prove a note's existence and destroy it, by computing the correct note hash for kernel / read requests, as well as the correct nullifier to avoid double-spends. / / This represents a pending same phase note, i.e. a note that was created in the transaction that is currently being / executed during the current execution phase (either non-revertible or revertible).

Methods

new

PendingSamePhaseNoteMetadata::new();

Takes no parameters.

PendingPreviousPhaseNoteMetadata

/ The metadata required to both prove a note's existence and destroy it, by computing the correct note hash for kernel / read requests, as well as the correct nullifier to avoid double-spends. / / This represents a pending previous phase note, i.e. a note that was created in the transaction that is currently / being executed, during the previous execution phase. Because there are only two phases and their order is always the / same (first non-revertible and then revertible) this implies that the note was created in the non-revertible phase, / and that the current phase is the revertible phase.

Fields

FieldType
nonceField

Methods

new

PendingPreviousPhaseNoteMetadata::new(nonce);

Parameters

NameType
nonceField

nonce

PendingPreviousPhaseNoteMetadata::nonce(self);

Parameters

NameType
self

SettledNoteMetadata

/ The metadata required to both prove a note's existence and destroy it, by computing the correct note hash for kernel / read requests, as well as the correct nullifier to avoid double-spends. / / This represents a settled note, i.e. a note that was created in a prior transaction and is therefore already in the / note hash tree.

Fields

FieldType
nonceField

Methods

new

SettledNoteMetadata::new(nonce);

Parameters

NameType
nonceField

nonce

SettledNoteMetadata::nonce(self);

Parameters

NameType
self

Standalone Functions

from

from(_value);

Parameters

NameType
_valuePendingSamePhaseNoteMetadata

from

from(value);

Parameters

NameType
valuePendingPreviousPhaseNoteMetadata

from

from(value);

Parameters

NameType
valueSettledNoteMetadata