ethereum.forks.frontier.transactions

Transactions are atomic units of work created externally to Ethereum and submitted to be executed. If Ethereum is viewed as a state machine, transactions are the events that move between states.

TX_BASE_COST

Base cost of a transaction in gas units. This is the minimum amount of gas required to execute a transaction.

24
TX_BASE_COST = Uint(21000)

TX_DATA_COST_PER_NON_ZERO

Gas cost per non-zero byte in the transaction data.

30
TX_DATA_COST_PER_NON_ZERO = Uint(68)

TX_DATA_COST_PER_ZERO

Gas cost per zero byte in the transaction data.

35
TX_DATA_COST_PER_ZERO = Uint(4)

Transaction

Atomic operation performed on the block chain.

41
@slotted_freezable
42
@dataclass
class Transaction:

nonce

A scalar value equal to the number of transactions sent by the sender.

48
    nonce: U256

gas_price

The price of gas for this transaction, in wei.

53
    gas_price: Uint

gas

The maximum amount of gas that can be used by this transaction.

58
    gas: Uint

to

The address of the recipient. If empty, the transaction is a contract creation.

63
    to: Bytes0 | Address

value

The amount of ether (in wei) to send with this transaction.

69
    value: U256

data

The data payload of the transaction, which can be used to call functions on contracts or to create new contracts.

74
    data: Bytes

v

The recovery id of the signature.

80
    v: U256

r

The first part of the signature.

85
    r: U256

s

The second part of the signature.

90
    s: U256

validate_transaction

Verifies a transaction.

The gas in a transaction gets used to pay for the intrinsic cost of operations, therefore if there is insufficient gas then it would not be possible to execute a transaction and it will be declared invalid.

Additionally, the nonce of a transaction must not equal or exceed the limit defined in EIP-2681, applied retroactively. In practice, defining the limit as 2**64-1 has no impact because sending 2**64-1 transactions is improbable. It's not strictly impossible though, 2**64-1 transactions is the entire capacity of the Ethereum blockchain at 2022 gas limits for a little over 22 years.

This function takes a transaction as a parameter and returns the intrinsic gas cost of the transaction after validation. It throws an InsufficientTransactionGasError exception if the transaction does not provide enough gas to cover the intrinsic cost, and a NonceOverflowError exception if the nonce is greater than 2**64 - 2.

def validate_transaction(tx: Transaction) -> Uint:
97
    """
98
    Verifies a transaction.
99
100
    The gas in a transaction gets used to pay for the intrinsic cost of
101
    operations, therefore if there is insufficient gas then it would not
102
    be possible to execute a transaction and it will be declared invalid.
103
104
    Additionally, the nonce of a transaction must not equal or exceed the
105
    limit defined in [EIP-2681], applied retroactively.
106
    In practice, defining the limit as ``2**64-1`` has no impact because
107
    sending ``2**64-1`` transactions is improbable. It's not strictly
108
    impossible though, ``2**64-1`` transactions is the entire capacity of the
109
    Ethereum blockchain at 2022 gas limits for a little over 22 years.
110
111
    This function takes a transaction as a parameter and returns the intrinsic
112
    gas cost of the transaction after validation. It throws an
113
    `InsufficientTransactionGasError` exception if the transaction does not
114
    provide enough gas to cover the intrinsic cost, and a `NonceOverflowError`
115
    exception if the nonce is greater than `2**64 - 2`.
116
117
    [EIP-2681]: https://eips.ethereum.org/EIPS/eip-2681
118
    """
119
    intrinsic_gas = calculate_intrinsic_cost(tx)
120
    if intrinsic_gas > tx.gas:
121
        raise InsufficientTransactionGasError("Insufficient gas")
122
    if U256(tx.nonce) >= U256(U64.MAX_VALUE):
123
        raise NonceOverflowError("Nonce too high")
124
    return intrinsic_gas

calculate_intrinsic_cost

Calculates the gas that is charged before execution is started.

The intrinsic cost of the transaction is charged before execution has begun. Functions/operations in the EVM cost money to execute so this intrinsic cost is for the operations that need to be paid for as part of the transaction. Data transfer, for example, is part of this intrinsic cost. It costs ether to send data over the wire and that ether is accounted for in the intrinsic cost calculated in this function. This intrinsic cost must be calculated and paid for before execution in order for all operations to be implemented.

The intrinsic cost includes:

  1. Base cost (TX_BASE_COST)

  2. Cost for data (zero and non-zero bytes)

This function takes a transaction as a parameter and returns the intrinsic gas cost of the transaction.

def calculate_intrinsic_cost(tx: Transaction) -> Uint:
128
    """
129
    Calculates the gas that is charged before execution is started.
130
131
    The intrinsic cost of the transaction is charged before execution has
132
    begun. Functions/operations in the EVM cost money to execute so this
133
    intrinsic cost is for the operations that need to be paid for as part of
134
    the transaction. Data transfer, for example, is part of this intrinsic
135
    cost. It costs ether to send data over the wire and that ether is
136
    accounted for in the intrinsic cost calculated in this function. This
137
    intrinsic cost must be calculated and paid for before execution in order
138
    for all operations to be implemented.
139
140
    The intrinsic cost includes:
141
    1. Base cost (`TX_BASE_COST`)
142
    2. Cost for data (zero and non-zero bytes)
143
144
    This function takes a transaction as a parameter and returns the intrinsic
145
    gas cost of the transaction.
146
    """
147
    data_cost = Uint(0)
148
149
    for byte in tx.data:
150
        if byte == 0:
151
            data_cost += TX_DATA_COST_PER_ZERO
152
        else:
153
            data_cost += TX_DATA_COST_PER_NON_ZERO
154
155
    return TX_BASE_COST + data_cost

recover_sender

Extracts the sender address from a transaction.

The v, r, and s values are the three parts that make up the signature of a transaction. In order to recover the sender of a transaction the two components needed are the signature (v, r, and s) and the signing hash of the transaction. The sender's public key can be obtained with these two values and therefore the sender address can be retrieved.

This function takes a transaction as a parameter and returns the address of the sender of the transaction. It raises an InvalidSignatureError if the signature values (r, s, v) are invalid.

def recover_sender(tx: Transaction) -> Address:
159
    """
160
    Extracts the sender address from a transaction.
161
162
    The v, r, and s values are the three parts that make up the signature
163
    of a transaction. In order to recover the sender of a transaction the two
164
    components needed are the signature (``v``, ``r``, and ``s``) and the
165
    signing hash of the transaction. The sender's public key can be obtained
166
    with these two values and therefore the sender address can be retrieved.
167
168
    This function takes a transaction as a parameter and returns
169
    the address of the sender of the transaction. It raises an
170
    `InvalidSignatureError` if the signature values (r, s, v) are invalid.
171
    """
172
    v, r, s = tx.v, tx.r, tx.s
173
    if v != 27 and v != 28:
174
        raise InvalidSignatureError("bad v")
175
    if U256(0) >= r or r >= SECP256K1N:
176
        raise InvalidSignatureError("bad r")
177
    if U256(0) >= s or s >= SECP256K1N:
178
        raise InvalidSignatureError("bad s")
179
180
    public_key = secp256k1_recover(r, s, v - U256(27), signing_hash(tx))
181
    return Address(keccak256(public_key)[12:32])

signing_hash

Compute the hash of a transaction used in the signature.

The values that are used to compute the signing hash set the rules for a transaction. For example, signing over the gas sets a limit for the amount of money that is allowed to be pulled out of the sender's account.

This function takes a transaction as a parameter and returns the signing hash of the transaction.

def signing_hash(tx: Transaction) -> Hash32:
185
    """
186
    Compute the hash of a transaction used in the signature.
187
188
    The values that are used to compute the signing hash set the rules for a
189
    transaction. For example, signing over the gas sets a limit for the
190
    amount of money that is allowed to be pulled out of the sender's account.
191
192
    This function takes a transaction as a parameter and returns the
193
    signing hash of the transaction.
194
    """
195
    return keccak256(
196
        rlp.encode(
197
            (
198
                tx.nonce,
199
                tx.gas_price,
200
                tx.gas,
201
                tx.to,
202
                tx.value,
203
                tx.data,
204
            )
205
        )
206
    )

get_transaction_hash

Compute the hash of a transaction.

This function takes a transaction as a parameter and returns the hash of the transaction.

def get_transaction_hash(tx: Transaction) -> Hash32:
210
    """
211
    Compute the hash of a transaction.
212
213
    This function takes a transaction as a parameter and returns the
214
    hash of the transaction.
215
    """
216
    return keccak256(rlp.encode(tx))