pub struct Note { /* private fields */ }Expand description
Phoenix Note struct
Implementations§
Source§impl Note
impl Note
Sourcepub fn new<R>(
rng: &mut R,
note_type: NoteType,
sender_pk: &PublicKey,
receiver_pk: &PublicKey,
value: u64,
value_blinder: Fr,
sender_blinder: [Fr; 2],
) -> Note
pub fn new<R>( rng: &mut R, note_type: NoteType, sender_pk: &PublicKey, receiver_pk: &PublicKey, value: u64, value_blinder: Fr, sender_blinder: [Fr; 2], ) -> Note
Creates a new phoenix output note
Sourcepub fn transparent<R>(
rng: &mut R,
sender_pk: &PublicKey,
receiver_pk: &PublicKey,
value: u64,
sender_blinder: [Fr; 2],
) -> Note
pub fn transparent<R>( rng: &mut R, sender_pk: &PublicKey, receiver_pk: &PublicKey, value: u64, sender_blinder: [Fr; 2], ) -> Note
Creates a new transparent note
The blinding factor will be constant zero since the value commitment exists only to shield the value. The value is not hidden for transparent notes, so this can be trivially treated as a constant.
Sourcepub fn transparent_stealth(
stealth_address: StealthAddress,
value: u64,
sender: impl Into<Sender>,
) -> Note
pub fn transparent_stealth( stealth_address: StealthAddress, value: u64, sender: impl Into<Sender>, ) -> Note
Creates a new transparent note
This is equivalent to [transparent] but taking only a stealth address
and a value. This is done to be able to generate a note
directly for a stealth address, as opposed to a public key.
Sourcepub fn obfuscated<R>(
rng: &mut R,
sender_pk: &PublicKey,
receiver_pk: &PublicKey,
value: u64,
value_blinder: Fr,
sender_blinder: [Fr; 2],
) -> Note
pub fn obfuscated<R>( rng: &mut R, sender_pk: &PublicKey, receiver_pk: &PublicKey, value: u64, value_blinder: Fr, sender_blinder: [Fr; 2], ) -> Note
Creates a new obfuscated note
The provided blinding factor will be used to calculate the value commitment of the note. The tuple (value, value_blinder), known by the caller of this function, must be later used to prove the knowledge of the value commitment of this note.
Sourcepub fn gen_nullifier(&self, sk: &SecretKey) -> Scalar
pub fn gen_nullifier(&self, sk: &SecretKey) -> Scalar
Create a unique nullifier for the note
This nullifier is represeted as H(note_sk · G', pos)
Sourcepub fn hash_inputs(&self) -> [Scalar; 6]
pub fn hash_inputs(&self) -> [Scalar; 6]
Return the internal representation of scalars to be hashed
Sourcepub fn hash(&self) -> Scalar
pub fn hash(&self) -> Scalar
Return a hash represented by `H(note_type, value_commitment, H(StealthAddress), pos, encrypted_data)
Sourcepub const fn stealth_address(&self) -> &StealthAddress
pub const fn stealth_address(&self) -> &StealthAddress
Returns the the stealth address associated with the note.
Sourcepub fn set_pos(&mut self, pos: u64)
pub fn set_pos(&mut self, pos: u64)
Set the position of the note on the tree. This, naturally, won’t reflect immediatelly on the data storage
Sourcepub const fn value_commitment(&self) -> &AffinePoint
pub const fn value_commitment(&self) -> &AffinePoint
Return the value commitment H(value, value_blinder)
Sourcepub const fn sender(&self) -> &Sender
pub const fn sender(&self) -> &Sender
Returns elgamal encryption of the sender’s PublicKey encrypted using
the StealthAddress::note_pk so only the receiver of the Note
can decrypt.
Trait Implementations§
Source§impl Archive for Note
impl Archive for Note
Source§impl<__D> Deserialize<Note, __D> for <Note as Archive>::Archivedwhere
__D: Fallible + ?Sized,
NoteType: Archive,
<NoteType as Archive>::Archived: Deserialize<NoteType, __D>,
AffinePoint: Archive,
<AffinePoint as Archive>::Archived: Deserialize<AffinePoint, __D>,
StealthAddress: Archive,
<StealthAddress as Archive>::Archived: Deserialize<StealthAddress, __D>,
u64: Archive,
<u64 as Archive>::Archived: Deserialize<u64, __D>,
[u8; 68]: Archive,
<[u8; 68] as Archive>::Archived: Deserialize<[u8; 68], __D>,
Sender: Archive,
<Sender as Archive>::Archived: Deserialize<Sender, __D>,
impl<__D> Deserialize<Note, __D> for <Note as Archive>::Archivedwhere
__D: Fallible + ?Sized,
NoteType: Archive,
<NoteType as Archive>::Archived: Deserialize<NoteType, __D>,
AffinePoint: Archive,
<AffinePoint as Archive>::Archived: Deserialize<AffinePoint, __D>,
StealthAddress: Archive,
<StealthAddress as Archive>::Archived: Deserialize<StealthAddress, __D>,
u64: Archive,
<u64 as Archive>::Archived: Deserialize<u64, __D>,
[u8; 68]: Archive,
<[u8; 68] as Archive>::Archived: Deserialize<[u8; 68], __D>,
Sender: Archive,
<Sender as Archive>::Archived: Deserialize<Sender, __D>,
Source§impl Serializable<phoenix_core::::note::{impl#4}::{constant#0}> for Note
impl Serializable<phoenix_core::::note::{impl#4}::{constant#0}> for Note
Source§fn from_bytes(
bytes: &[u8; 302],
) -> Result<Note, <Note as Serializable<phoenix_core::::note::{impl#4}::{constant#0}>>::Error>
fn from_bytes( bytes: &[u8; 302], ) -> Result<Note, <Note as Serializable<phoenix_core::::note::{impl#4}::{constant#0}>>::Error>
Attempts to convert a byte representation of a note into a Note,
failing if the input is invalid
impl Eq for Note
Auto Trait Implementations§
impl Freeze for Note
impl RefUnwindSafe for Note
impl Send for Note
impl Sync for Note
impl Unpin for Note
impl UnwindSafe for Note
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Source§impl<T> ArchiveUnsized for Twhere
T: Archive,
impl<T> ArchiveUnsized for Twhere
T: Archive,
Source§type Archived = <T as Archive>::Archived
type Archived = <T as Archive>::Archived
Archive, it may be unsized. Read moreSource§type MetadataResolver = ()
type MetadataResolver = ()
Source§unsafe fn resolve_metadata(
&self,
_: usize,
_: <T as ArchiveUnsized>::MetadataResolver,
_: *mut <<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata,
)
unsafe fn resolve_metadata( &self, _: usize, _: <T as ArchiveUnsized>::MetadataResolver, _: *mut <<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata, )
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, const N: usize> DeserializableSlice<N> for Twhere
T: Serializable<N>,
impl<T, const N: usize> DeserializableSlice<N> for Twhere
T: Serializable<N>,
Source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.Source§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Source§impl<T, const N: usize> ParseHexStr<N> for Twhere
T: Serializable<N>,
impl<T, const N: usize> ParseHexStr<N> for Twhere
T: Serializable<N>,
Source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.Source§impl<T, S> SerializeUnsized<S> for T
impl<T, S> SerializeUnsized<S> for T
Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.