revm_transaction/
common.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use primitives::{Address, Bytes, U256};

/// Trait that contains all common field that are shared by all transactions.
/// This trait is base for Legacy, EIp2930 and Eip1559 transactions.
pub trait CommonTxFields {
    /// Caller aka Author aka transaction signer.
    fn caller(&self) -> Address;

    /// The maximum amount of gas the transaction can use.
    fn gas_limit(&self) -> u64;

    /// The value sent to the receiver of `TxKind::Call`.
    fn value(&self) -> U256;

    /// Returns the input data of the transaction.
    fn input(&self) -> &Bytes;

    /// The nonce of the transaction.
    fn nonce(&self) -> u64;
}