pub enum Transaction<N: Network> {
    Deploy(N::TransactionID, ProgramOwner<N>, Box<Deployment<N>>, Fee<N>),
    Execute(N::TransactionID, Execution<N>, Option<Fee<N>>),
    Fee(N::TransactionID, Fee<N>),
}

Variants§

§

Deploy(N::TransactionID, ProgramOwner<N>, Box<Deployment<N>>, Fee<N>)

The deploy transaction publishes an Aleo program to the network.

§

Execute(N::TransactionID, Execution<N>, Option<Fee<N>>)

The execute transaction represents a call to an Aleo program.

§

Fee(N::TransactionID, Fee<N>)

The fee transaction represents a fee paid to the network, used for rejected transactions.

Implementations§

source§

impl<N: Network> Transaction<N>

source

pub fn to_root(&self) -> Result<Field<N>>

Returns the transaction root, by computing the root for a Merkle tree of the transition IDs.

source

pub fn to_leaf(&self, id: &Field<N>) -> Result<TransactionLeaf<N>>

Returns the Merkle leaf for the given ID of a function or transition in the transaction.

source

pub fn to_path(&self, leaf: &TransactionLeaf<N>) -> Result<TransactionPath<N>>

Returns the Merkle path for the transaction leaf.

source

pub fn to_tree(&self) -> Result<TransactionTree<N>>

The Merkle tree of transition IDs for the transaction.

source§

impl<N: Network> Transaction<N>

source

pub fn deployment_tree( deployment: &Deployment<N>, fee: Option<&Fee<N>> ) -> Result<TransactionTree<N>>

Returns the Merkle tree for the given deployment.

source

pub fn execution_tree( execution: &Execution<N>, fee: &Option<Fee<N>> ) -> Result<TransactionTree<N>>

Returns the Merkle tree for the given execution.

source

pub fn transitions_tree<'a>( transitions: impl ExactSizeIterator<Item = &'a Transition<N>>, fee: &Option<Fee<N>> ) -> Result<TransactionTree<N>>

Returns the Merkle tree for the given transitions.

source

pub fn fee_tree(fee: &Fee<N>) -> Result<TransactionTree<N>>

Returns the Merkle tree for the given fee.

source

pub fn check_deployment_size(deployment: &Deployment<N>) -> Result<()>

Returns true if the deployment is within the size bounds.

source

pub fn check_execution_size(num_transitions: usize) -> Result<()>

Returns true if the execution is within the size bounds.

source§

impl<N: Network> Transaction<N>

source

pub fn from_deployment( owner: ProgramOwner<N>, deployment: Deployment<N>, fee: Fee<N> ) -> Result<Self>

Initializes a new deployment transaction.

source

pub fn from_execution( execution: Execution<N>, fee: Option<Fee<N>> ) -> Result<Self>

Initializes a new execution transaction.

source

pub fn from_fee(fee: Fee<N>) -> Result<Self>

Initializes a new fee transaction.

source§

impl<N: Network> Transaction<N>

source

pub const fn is_deploy(&self) -> bool

Returns true if the transaction is a deploy transaction.

source

pub const fn is_execute(&self) -> bool

Returns true if the transaction is an execute transaction.

source

pub const fn is_fee(&self) -> bool

Returns true if the transaction is a fee transaction.

source§

impl<N: Network> Transaction<N>

source

pub fn contains_split(&self) -> bool

Returns true if this transaction contains a call to credits.aleo/split.

source§

impl<N: Network> Transaction<N>

source

pub fn owner(&self) -> Option<&ProgramOwner<N>>

Returns Some(owner) if the transaction is a deployment. Otherwise, returns None.

source

pub fn deployment(&self) -> Option<&Deployment<N>>

Returns Some(deployment) if the transaction is a deployment. Otherwise, returns None.

source

pub fn execution(&self) -> Option<&Execution<N>>

Returns Some(execution) if the transaction is an execution. Otherwise, returns None.

source§

impl<N: Network> Transaction<N>

source

pub const fn id(&self) -> N::TransactionID

Returns the transaction ID.

source

pub fn fee_amount(&self) -> Result<U64<N>>

Returns the transaction total fee.

source

pub fn base_fee_amount(&self) -> Result<U64<N>>

Returns the transaction base fee.

source

pub fn priority_fee_amount(&self) -> Result<U64<N>>

Returns the transaction priority fee.

source

pub fn fee_transition(&self) -> Option<Fee<N>>

Returns the fee transition.

source§

impl<N: Network> Transaction<N>

source

pub fn contains_transition(&self, transition_id: &N::TransitionID) -> bool

Returns true if the transaction contains the given transition ID.

source

pub fn contains_serial_number(&self, serial_number: &Field<N>) -> bool

Returns true if the transaction contains the given serial number.

source

pub fn contains_commitment(&self, commitment: &Field<N>) -> bool

Returns true if the transaction contains the given commitment.

source§

impl<N: Network> Transaction<N>

source

pub fn find_transition( &self, transition_id: &N::TransitionID ) -> Option<&Transition<N>>

Returns the transition with the corresponding transition ID, if it exists.

source

pub fn find_transition_for_serial_number( &self, serial_number: &Field<N> ) -> Option<&Transition<N>>

Returns the transition for the given serial number, if it exists.

source

pub fn find_transition_for_commitment( &self, commitment: &Field<N> ) -> Option<&Transition<N>>

Returns the transition for the given commitment, if it exists.

source

pub fn find_record( &self, commitment: &Field<N> ) -> Option<&Record<N, Ciphertext<N>>>

Returns the record with the corresponding commitment, if it exists.

source§

impl<N: Network> Transaction<N>

source

pub fn transition_ids( &self ) -> impl '_ + DoubleEndedIterator<Item = &N::TransitionID>

Returns an iterator over the transition IDs, for all transitions.

source

pub fn transitions( &self ) -> impl '_ + DoubleEndedIterator<Item = &Transition<N>>

Returns an iterator over all transitions.

source

pub fn input_ids(&self) -> impl '_ + Iterator<Item = &Field<N>>

Returns an iterator over the input IDs, for all transition inputs that are records.

source

pub fn serial_numbers(&self) -> impl '_ + Iterator<Item = &Field<N>>

Returns an iterator over the serial numbers, for all transition inputs that are records.

source

pub fn tags(&self) -> impl '_ + Iterator<Item = &Field<N>>

Returns an iterator over the tags, for all transition inputs that are records.

source

pub fn output_ids(&self) -> impl '_ + Iterator<Item = &Field<N>>

Returns an iterator over the output IDs, for all transition inputs that are records.

source

pub fn commitments(&self) -> impl '_ + Iterator<Item = &Field<N>>

Returns an iterator over the commitments, for all transition outputs that are records.

source

pub fn records( &self ) -> impl '_ + Iterator<Item = (&Field<N>, &Record<N, Ciphertext<N>>)>

Returns an iterator over the records, for all transition outputs that are records.

source

pub fn nonces(&self) -> impl '_ + Iterator<Item = &Group<N>>

Returns an iterator over the nonces, for all transition outputs that are records.

source

pub fn transition_public_keys( &self ) -> impl '_ + DoubleEndedIterator<Item = &Group<N>>

Returns an iterator over the transition public keys, for all transitions.

source

pub fn transition_commitments( &self ) -> impl '_ + DoubleEndedIterator<Item = &Field<N>>

Returns an iterator over the transition commitments, for all transitions.

source§

impl<N: Network> Transaction<N>

source

pub fn into_transition_ids(self) -> impl Iterator<Item = N::TransitionID>

Returns a consuming iterator over the transition IDs, for all transitions.

source

pub fn into_transitions(self) -> impl DoubleEndedIterator<Item = Transition<N>>

Returns a consuming iterator over all transitions.

source

pub fn into_transition_public_keys( self ) -> impl DoubleEndedIterator<Item = Group<N>>

Returns a consuming iterator over the transition public keys, for all transitions.

source

pub fn into_tags(self) -> impl Iterator<Item = Field<N>>

Returns a consuming iterator over the tags, for all transition inputs that are records.

source

pub fn into_serial_numbers(self) -> impl Iterator<Item = Field<N>>

Returns a consuming iterator over the serial numbers, for all transition inputs that are records.

source

pub fn into_commitments(self) -> impl Iterator<Item = Field<N>>

Returns a consuming iterator over the commitments, for all transition outputs that are records.

source

pub fn into_records( self ) -> impl Iterator<Item = (Field<N>, Record<N, Ciphertext<N>>)>

Returns a consuming iterator over the records, for all transition outputs that are records.

source

pub fn into_nonces(self) -> impl Iterator<Item = Group<N>>

Returns a consuming iterator over the nonces, for all transition outputs that are records.

Trait Implementations§

source§

impl<N: Clone + Network> Clone for Transaction<N>where N::TransactionID: Clone,

source§

fn clone(&self) -> Transaction<N>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<N: Network> Debug for Transaction<N>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Prints the transaction as a JSON-string.

source§

impl<'de, N: Network> Deserialize<'de> for Transaction<N>

source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

Deserializes the transaction from a JSON-string or buffer.

source§

impl<N: Network> Display for Transaction<N>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Displays the transaction as a JSON-string.

source§

impl<N: Network> FromBytes for Transaction<N>

source§

fn read_le<R: Read>(reader: R) -> IoResult<Self>

Reads the transaction from the buffer.

§

fn from_bytes_le(bytes: &[u8]) -> Result<Self, Error>where Self: Sized,

Returns Self from a byte array in little-endian order.
source§

impl<N: Network> FromStr for Transaction<N>

source§

fn from_str(transaction: &str) -> Result<Self, Self::Err>

Initializes the transaction from a JSON-string.

§

type Err = Error

The associated error which can be returned from parsing.
source§

impl<N: PartialEq + Network> PartialEq for Transaction<N>where N::TransactionID: PartialEq,

source§

fn eq(&self, other: &Transaction<N>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<N: Network> Serialize for Transaction<N>

source§

fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>

Serializes the transaction to a JSON-string or buffer.

source§

impl<N: Network> ToBytes for Transaction<N>

source§

fn write_le<W: Write>(&self, writer: W) -> IoResult<()>

Writes the transaction to the buffer.

§

fn to_bytes_le(&self) -> Result<Vec<u8>, Error>where Self: Sized,

Returns self as a byte array in little-endian order.
source§

impl<N: Eq + Network> Eq for Transaction<N>where N::TransactionID: Eq,

source§

impl<N: Network> StructuralEq for Transaction<N>

source§

impl<N: Network> StructuralPartialEq for Transaction<N>

Auto Trait Implementations§

§

impl<N> RefUnwindSafe for Transaction<N>where N: RefUnwindSafe, <N as Environment>::Field: RefUnwindSafe, <<N as Environment>::PairingCurve as PairingEngine>::G1Affine: RefUnwindSafe, <N as Environment>::Projective: RefUnwindSafe, <N as Environment>::Scalar: RefUnwindSafe, <N as Network>::StateRoot: RefUnwindSafe, <N as Network>::TransactionID: RefUnwindSafe, <N as Network>::TransitionID: RefUnwindSafe,

§

impl<N> Send for Transaction<N>

§

impl<N> Sync for Transaction<N>

§

impl<N> Unpin for Transaction<N>where N: Unpin, <N as Environment>::Field: Unpin, <<N as Environment>::PairingCurve as PairingEngine>::G1Affine: Unpin, <N as Environment>::Projective: Unpin, <N as Environment>::Scalar: Unpin, <N as Network>::StateRoot: Unpin, <N as Network>::TransactionID: Unpin, <N as Network>::TransitionID: Unpin,

§

impl<N> UnwindSafe for Transaction<N>where N: UnwindSafe, <N as Environment>::Field: UnwindSafe, <<N as Environment>::PairingCurve as PairingEngine>::G1Affine: UnwindSafe + RefUnwindSafe, <N as Environment>::Projective: UnwindSafe, <N as Environment>::Scalar: UnwindSafe, <N as Network>::StateRoot: UnwindSafe, <N as Network>::TransactionID: UnwindSafe, <N as Network>::TransitionID: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<'de, T> DeserializeExt<'de> for Twhere T: DeserializeOwned,

§

fn take_from_value<D>( value: &mut Value, field: &str ) -> Result<T, <D as Deserializer<'de>>::Error>where D: Deserializer<'de>,

§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,