pub struct OwnedTxOut<'a> { /* private fields */ }
Expand description

Transaction ouput that can be redeemed by a private key pair at a given index and are returned by the check_outputs method.

use monero::blockdata::transaction::Transaction;
use monero::consensus::encode::deserialize;
use monero::util::key::{KeyPair, PrivateKey, PublicKey, ViewPair};

// Keypair used to recover the ephemeral spend key of an output
let keypair = KeyPair {
    view: secret_view,
    spend: secret_spend,
};

// Viewpair used to scan a transaction to retreive owned outputs
let view_pair = ViewPair { view: secret_view, spend };

// Get all owned output for sub-addresses in range of 0-1 major index and 0-2 minor index
let owned_outputs = tx.check_outputs(&view_pair, 0..2, 0..3).unwrap();

for out in owned_outputs {
    // Recover the ephemeral private spend key
    let private_key = out.recover_key(&keypair);
}

Implementations§

Returns the index of this output in the transaction

Returns a reference to the actual redeemable output.

Returns the index of the key pair to use, can be 0/0 for main address.

Returns the associated transaction public key.

Returns the unblinded or clear amount of this output.

None if we didn’t have enough information to unblind the output.

Returns the original blinding factor of this output.

None if we didn’t have enough information to unblind the output.

Returns the original commitment of this output.

None if we didn’t have enough information to unblind the output.

Retreive the public keys, if any.

Recover the ephemeral private key for spending the output, this requires access to the private spend key.

Trait Implementations§

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.