op_alloy_consensus::transaction::deposit

Struct TxDeposit

source
pub struct TxDeposit {
    pub source_hash: B256,
    pub from: Address,
    pub to: TxKind,
    pub mint: Option<u128>,
    pub value: U256,
    pub gas_limit: u64,
    pub is_system_transaction: bool,
    pub input: Bytes,
}
Expand description

Deposit transactions, also known as deposits are initiated on L1, and executed on L2.

Fields§

§source_hash: B256

Hash that uniquely identifies the source of the deposit.

§from: Address

The address of the sender account.

§to: TxKind

The address of the recipient account, or the null (zero-length) address if the deposited transaction is a contract creation.

§mint: Option<u128>

The ETH value to mint on L2.

§value: U256

The ETH value to send to the recipient account.

§gas_limit: u64

The gas limit for the L2 transaction.

§is_system_transaction: bool

Field indicating if this transaction is exempt from the L2 gas limit.

§input: Bytes

Input has two uses depending if transaction is Create or Call (if to field is None or Some).

Implementations§

source§

impl TxDeposit

source

pub fn decode_fields(buf: &mut &[u8]) -> Result<Self>

Decodes the inner TxDeposit fields from RLP bytes.

NOTE: This assumes a RLP header has already been decoded, and just decodes the following RLP fields in the following order:

  • source_hash
  • from
  • to
  • mint
  • value
  • gas_limit
  • is_system_transaction
  • input
source

pub(crate) fn fields_len(&self) -> usize

Outputs the length of the transaction’s fields, without a RLP header or length of the eip155 fields.

source

pub(crate) fn encode_fields(&self, out: &mut dyn BufMut)

Encodes only the transaction’s fields into the desired buffer, without a RLP header. https://github.com/ethereum-optimism/specs/blob/main/specs/protocol/deposits.md#the-deposited-transaction-type

source

pub fn size(&self) -> usize

Calculates a heuristic for the in-memory size of the TxDeposit transaction.

source

pub(crate) const fn tx_type(&self) -> OpTxType

Get the transaction type

source

pub fn encode_inner(&self, out: &mut dyn BufMut, with_header: bool)

Inner encoding function that is used for both rlp [Encodable] trait and for calculating hash that for eip2718 does not require rlp header

source

pub fn encoded_len(&self, with_header: bool) -> usize

Output the length of the RLP signed transaction encoding.

If with_header is true, the length includes the RLP header.

Trait Implementations§

source§

impl<'arbitrary> Arbitrary<'arbitrary> for TxDeposit

source§

fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>

Generate an arbitrary value of Self from the given unstructured data. Read more
source§

fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>

Generate an arbitrary value of Self from the entirety of the given unstructured data. Read more
source§

fn size_hint(depth: usize) -> (usize, Option<usize>)

Get a size hint for how many bytes out of an Unstructured this type needs to construct itself. Read more
source§

impl Clone for TxDeposit

source§

fn clone(&self) -> TxDeposit

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 Debug for TxDeposit

source§

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

Formats the value using the given formatter. Read more
source§

impl Decodable for TxDeposit

source§

fn decode(data: &mut &[u8]) -> Result<Self>

Decodes the blob into the appropriate type. buf must be advanced past the decoded object.
source§

impl Default for TxDeposit

source§

fn default() -> TxDeposit

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for TxDeposit

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<'de> DeserializeAs<'de, TxDeposit> for TxDeposit<'de>

Available on crate features serde and serde-bincode-compat only.
source§

fn deserialize_as<D>(deserializer: D) -> Result<TxDeposit, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer.
source§

impl Encodable for TxDeposit

source§

fn encode(&self, out: &mut dyn BufMut)

Encodes the type into the out buffer.
source§

fn length(&self) -> usize

Returns the length of the encoding of this type in bytes. Read more
source§

impl<'a> From<&'a TxDeposit> for TxDeposit<'a>

Available on crate features serde and serde-bincode-compat only.
source§

fn from(value: &'a TxDeposit) -> Self

Converts to this type from the input type.
source§

impl<'a> From<TxDeposit<'a>> for TxDeposit

Available on crate features serde and serde-bincode-compat only.
source§

fn from(value: TxDeposit<'a>) -> Self

Converts to this type from the input type.
source§

impl From<TxDeposit> for OpTxEnvelope

source§

fn from(v: TxDeposit) -> Self

Converts to this type from the input type.
source§

impl From<TxDeposit> for OpTypedTransaction

source§

fn from(tx: TxDeposit) -> Self

Converts to this type from the input type.
source§

impl Hash for TxDeposit

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for TxDeposit

source§

fn eq(&self, other: &TxDeposit) -> bool

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

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

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

impl Serialize for TxDeposit

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<'a> SerializeAs<TxDeposit> for TxDeposit<'a>

Available on crate features serde and serde-bincode-compat only.
source§

fn serialize_as<S>(source: &TxDeposit, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer.
source§

impl Transaction for TxDeposit

source§

fn chain_id(&self) -> Option<ChainId>

Get chain_id.
source§

fn nonce(&self) -> u64

Get nonce.
source§

fn gas_limit(&self) -> u64

Get gas_limit.
source§

fn gas_price(&self) -> Option<u128>

Get gas_price.
source§

fn max_fee_per_gas(&self) -> u128

Returns the EIP-1559 the maximum fee per gas the caller is willing to pay. Read more
source§

fn max_priority_fee_per_gas(&self) -> Option<u128>

Returns the EIP-1559 Priority fee the caller is paying to the block author. Read more
source§

fn max_fee_per_blob_gas(&self) -> Option<u128>

Max fee per blob gas for EIP-4844 transaction. Read more
source§

fn priority_fee_or_price(&self) -> u128

Return the max priority fee per gas if the transaction is an EIP-1559 transaction, and otherwise return the gas price. Read more
source§

fn to(&self) -> TxKind

Get to.
source§

fn value(&self) -> U256

Get value.
source§

fn input(&self) -> &[u8]

Get data.
source§

fn ty(&self) -> u8

Returns the transaction type
source§

fn access_list(&self) -> Option<&AccessList>

Returns the EIP-2930 access_list for the particular transaction type. Returns None for older transaction types.
source§

fn blob_versioned_hashes(&self) -> Option<&[B256]>

Blob versioned hashes for eip4844 transaction. For previous transaction types this is None.
source§

fn authorization_list(&self) -> Option<&[SignedAuthorization]>

Returns the [SignedAuthorization] list of the transaction. Read more
§

fn effective_tip_per_gas(&self, base_fee: u64) -> Option<u128>

Returns the effective tip for this transaction. Read more
source§

impl Eq for TxDeposit

source§

impl StructuralPartialEq for TxDeposit

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<Q, K> Equivalent<K> for Q
where 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
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where 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.

source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

source§

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, U> TryFrom<U> for T
where U: Into<T>,

source§

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 T
where U: TryFrom<T>,

source§

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 T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

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

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 192 bytes