[][src]Struct ergo_lib::chain::ergo_box::ErgoBoxCandidate

pub struct ErgoBoxCandidate {
    pub value: BoxValue,
    pub ergo_tree: ErgoTree,
    pub tokens: Vec<Token>,
    pub additional_registers: NonMandatoryRegisters,
    pub creation_height: u32,
}

Contains the same fields as ErgoBox, except if transaction id and index, that will be calculated after full transaction formation. Use box_builder::ErgoBoxCandidateBuilder to create an instance.

Fields

value: BoxValue

amount of money associated with the box

ergo_tree: ErgoTree

guarding script, which should be evaluated to true in order to open this box

tokens: Vec<Token>

secondary tokens the box contains

additional_registers: NonMandatoryRegisters

additional registers the box can carry over

creation_height: u32

height when a transaction containing the box was created. This height is declared by user and should not exceed height of the block, containing the transaction with this box.

Implementations

impl ErgoBoxCandidate[src]

pub fn serialize_body_with_indexed_digests<W: SigmaByteWrite>(
    &self,
    token_ids_in_tx: Option<&IndexSet<TokenId>>,
    w: &mut W
) -> Result<(), Error>
[src]

Box serialization with token ids optionally saved in transaction (in this case only token index is saved)

pub fn parse_body_with_indexed_digests<R: SigmaByteRead>(
    digests_in_tx: Option<&IndexSet<TokenId>>,
    r: &mut R
) -> Result<ErgoBoxCandidate, SerializationError>
[src]

Box deserialization with token ids optionally parsed in transaction

Trait Implementations

impl Clone for ErgoBoxCandidate[src]

impl Debug for ErgoBoxCandidate[src]

impl Eq for ErgoBoxCandidate[src]

impl ErgoBoxAssets for ErgoBoxCandidate[src]

impl From<ErgoBox> for ErgoBoxCandidate[src]

impl PartialEq<ErgoBoxCandidate> for ErgoBoxCandidate[src]

impl SigmaSerializable for ErgoBoxCandidate[src]

impl StructuralEq for ErgoBoxCandidate[src]

impl StructuralPartialEq for ErgoBoxCandidate[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<F> TryExtractInto<F> for F[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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