revm_primitives/env.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
pub mod handler_cfg;
pub use handler_cfg::{CfgEnvWithHandlerCfg, EnvWithHandlerCfg, HandlerCfg};
use crate::{
calc_blob_gasprice, AccessListItem, Account, Address, AuthorizationList, Bytes, InvalidHeader,
InvalidTransaction, Spec, SpecId, B256, GAS_PER_BLOB, MAX_BLOB_NUMBER_PER_BLOCK, MAX_CODE_SIZE,
MAX_INITCODE_SIZE, U256, VERSIONED_HASH_VERSION_KZG,
};
use alloy_primitives::TxKind;
use core::cmp::{min, Ordering};
use core::hash::Hash;
use std::boxed::Box;
use std::vec::Vec;
/// EVM environment configuration.
#[derive(Clone, Debug, Default, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Env {
/// Configuration of the EVM itself.
pub cfg: CfgEnv,
/// Configuration of the block the transaction is in.
pub block: BlockEnv,
/// Configuration of the transaction that is being executed.
pub tx: TxEnv,
}
impl Env {
/// Resets environment to default values.
#[inline]
pub fn clear(&mut self) {
*self = Self::default();
}
/// Create boxed [Env].
#[inline]
pub fn boxed(cfg: CfgEnv, block: BlockEnv, tx: TxEnv) -> Box<Self> {
Box::new(Self { cfg, block, tx })
}
/// Calculates the effective gas price of the transaction.
#[inline]
pub fn effective_gas_price(&self) -> U256 {
if let Some(priority_fee) = self.tx.gas_priority_fee {
min(self.tx.gas_price, self.block.basefee + priority_fee)
} else {
self.tx.gas_price
}
}
/// Calculates the [EIP-4844] `data_fee` of the transaction.
///
/// Returns `None` if `Cancun` is not enabled. This is enforced in [`Env::validate_block_env`].
///
/// [EIP-4844]: https://eips.ethereum.org/EIPS/eip-4844
#[inline]
pub fn calc_data_fee(&self) -> Option<U256> {
self.block.get_blob_gasprice().map(|blob_gas_price| {
U256::from(blob_gas_price).saturating_mul(U256::from(self.tx.get_total_blob_gas()))
})
}
/// Calculates the maximum [EIP-4844] `data_fee` of the transaction.
///
/// This is used for ensuring that the user has at least enough funds to pay the
/// `max_fee_per_blob_gas * total_blob_gas`, on top of regular gas costs.
///
/// See EIP-4844:
/// <https://github.com/ethereum/EIPs/blob/master/EIPS/eip-4844.md#execution-layer-validation>
pub fn calc_max_data_fee(&self) -> Option<U256> {
self.tx.max_fee_per_blob_gas.map(|max_fee_per_blob_gas| {
max_fee_per_blob_gas.saturating_mul(U256::from(self.tx.get_total_blob_gas()))
})
}
/// Validate the block environment.
#[inline]
pub fn validate_block_env<SPEC: Spec>(&self) -> Result<(), InvalidHeader> {
// `prevrandao` is required for the merge
if SPEC::enabled(SpecId::MERGE) && self.block.prevrandao.is_none() {
return Err(InvalidHeader::PrevrandaoNotSet);
}
// `excess_blob_gas` is required for Cancun
if SPEC::enabled(SpecId::CANCUN) && self.block.blob_excess_gas_and_price.is_none() {
return Err(InvalidHeader::ExcessBlobGasNotSet);
}
Ok(())
}
/// Validate transaction data that is set inside ENV and return error if something is wrong.
///
/// Return initial spend gas (Gas needed to execute transaction).
#[inline]
pub fn validate_tx<SPEC: Spec>(&self) -> Result<(), InvalidTransaction> {
// Check if the transaction's chain id is correct
if let Some(tx_chain_id) = self.tx.chain_id {
if tx_chain_id != self.cfg.chain_id {
return Err(InvalidTransaction::InvalidChainId);
}
}
// Check if gas_limit is more than block_gas_limit
if !self.cfg.is_block_gas_limit_disabled()
&& U256::from(self.tx.gas_limit) > self.block.gas_limit
{
return Err(InvalidTransaction::CallerGasLimitMoreThanBlock);
}
// Check that access list is empty for transactions before BERLIN
if !SPEC::enabled(SpecId::BERLIN) && !self.tx.access_list.is_empty() {
return Err(InvalidTransaction::AccessListNotSupported);
}
// BASEFEE tx check
if SPEC::enabled(SpecId::LONDON) {
if let Some(priority_fee) = self.tx.gas_priority_fee {
if priority_fee > self.tx.gas_price {
// or gas_max_fee for eip1559
return Err(InvalidTransaction::PriorityFeeGreaterThanMaxFee);
}
}
// check minimal cost against basefee
if !self.cfg.is_base_fee_check_disabled()
&& self.effective_gas_price() < self.block.basefee
{
return Err(InvalidTransaction::GasPriceLessThanBasefee);
}
}
// EIP-3860: Limit and meter initcode
if SPEC::enabled(SpecId::SHANGHAI) && self.tx.transact_to.is_create() {
let max_initcode_size = self
.cfg
.limit_contract_code_size
.map(|limit| limit.saturating_mul(2))
.unwrap_or(MAX_INITCODE_SIZE);
if self.tx.data.len() > max_initcode_size {
return Err(InvalidTransaction::CreateInitCodeSizeLimit);
}
}
// - For before CANCUN, check that `blob_hashes` and `max_fee_per_blob_gas` are empty / not set
if !SPEC::enabled(SpecId::CANCUN)
&& (self.tx.max_fee_per_blob_gas.is_some() || !self.tx.blob_hashes.is_empty())
{
return Err(InvalidTransaction::BlobVersionedHashesNotSupported);
}
// Presence of max_fee_per_blob_gas means that this is blob transaction.
if let Some(max) = self.tx.max_fee_per_blob_gas {
// ensure that the user was willing to at least pay the current blob gasprice
let price = self.block.get_blob_gasprice().expect("already checked");
if U256::from(price) > max {
return Err(InvalidTransaction::BlobGasPriceGreaterThanMax);
}
// there must be at least one blob
if self.tx.blob_hashes.is_empty() {
return Err(InvalidTransaction::EmptyBlobs);
}
// The field `to` deviates slightly from the semantics with the exception
// that it MUST NOT be nil and therefore must always represent
// a 20-byte address. This means that blob transactions cannot
// have the form of a create transaction.
if self.tx.transact_to.is_create() {
return Err(InvalidTransaction::BlobCreateTransaction);
}
// all versioned blob hashes must start with VERSIONED_HASH_VERSION_KZG
for blob in self.tx.blob_hashes.iter() {
if blob[0] != VERSIONED_HASH_VERSION_KZG {
return Err(InvalidTransaction::BlobVersionNotSupported);
}
}
// ensure the total blob gas spent is at most equal to the limit
// assert blob_gas_used <= MAX_BLOB_GAS_PER_BLOCK
let num_blobs = self.tx.blob_hashes.len();
if num_blobs > MAX_BLOB_NUMBER_PER_BLOCK as usize {
return Err(InvalidTransaction::TooManyBlobs {
have: num_blobs,
max: MAX_BLOB_NUMBER_PER_BLOCK as usize,
});
}
} else {
// if max_fee_per_blob_gas is not set, then blob_hashes must be empty
if !self.tx.blob_hashes.is_empty() {
return Err(InvalidTransaction::BlobVersionedHashesNotSupported);
}
}
// check if EIP-7702 transaction is enabled.
if !SPEC::enabled(SpecId::PRAGUE) && self.tx.authorization_list.is_some() {
return Err(InvalidTransaction::AuthorizationListNotSupported);
}
if let Some(auth_list) = &self.tx.authorization_list {
// The transaction is considered invalid if the length of authorization_list is zero.
if auth_list.is_empty() {
return Err(InvalidTransaction::EmptyAuthorizationList);
}
// Check if other fields are unset.
if self.tx.max_fee_per_blob_gas.is_some() || !self.tx.blob_hashes.is_empty() {
return Err(InvalidTransaction::AuthorizationListInvalidFields);
}
}
Ok(())
}
/// Validate transaction against state.
///
/// # Panics
///
/// If account code is not loaded.
#[inline]
pub fn validate_tx_against_state<SPEC: Spec>(
&self,
account: &mut Account,
) -> Result<(), InvalidTransaction> {
// EIP-3607: Reject transactions from senders with deployed code
// This EIP is introduced after london but there was no collision in past
// so we can leave it enabled always
if !self.cfg.is_eip3607_disabled() {
let bytecode = &account.info.code.as_ref().unwrap();
// allow EOAs whose code is a valid delegation designation,
// i.e. 0xef0100 || address, to continue to originate transactions.
if !bytecode.is_empty() && !bytecode.is_eip7702() {
return Err(InvalidTransaction::RejectCallerWithCode);
}
}
// Check that the transaction's nonce is correct
if let Some(tx) = self.tx.nonce {
let state = account.info.nonce;
match tx.cmp(&state) {
Ordering::Greater => {
return Err(InvalidTransaction::NonceTooHigh { tx, state });
}
Ordering::Less => {
return Err(InvalidTransaction::NonceTooLow { tx, state });
}
_ => {}
}
}
let mut balance_check = U256::from(self.tx.gas_limit)
.checked_mul(self.tx.gas_price)
.and_then(|gas_cost| gas_cost.checked_add(self.tx.value))
.ok_or(InvalidTransaction::OverflowPaymentInTransaction)?;
if SPEC::enabled(SpecId::CANCUN) {
// if the tx is not a blob tx, this will be None, so we add zero
let data_fee = self.calc_max_data_fee().unwrap_or_default();
balance_check = balance_check
.checked_add(U256::from(data_fee))
.ok_or(InvalidTransaction::OverflowPaymentInTransaction)?;
}
// Check if account has enough balance for gas_limit*gas_price and value transfer.
// Transfer will be done inside `*_inner` functions.
if balance_check > account.info.balance {
if self.cfg.is_balance_check_disabled() {
// Add transaction cost to balance to ensure execution doesn't fail.
account.info.balance = balance_check;
} else {
return Err(InvalidTransaction::LackOfFundForMaxFee {
fee: Box::new(balance_check),
balance: Box::new(account.info.balance),
});
}
}
Ok(())
}
}
/// EVM configuration.
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Clone, Debug, Eq, PartialEq)]
#[non_exhaustive]
pub struct CfgEnv {
/// Chain ID of the EVM, it will be compared to the transaction's Chain ID.
/// Chain ID is introduced EIP-155
pub chain_id: u64,
/// KZG Settings for point evaluation precompile. By default, this is loaded from the ethereum mainnet trusted setup.
#[cfg(any(feature = "c-kzg", feature = "kzg-rs"))]
#[cfg_attr(feature = "serde", serde(skip))]
pub kzg_settings: crate::kzg::EnvKzgSettings,
/// Bytecode that is created with CREATE/CREATE2 is by default analysed and jumptable is created.
/// This is very beneficial for testing and speeds up execution of that bytecode if called multiple times.
///
/// Default: Analyse
pub perf_analyse_created_bytecodes: AnalysisKind,
/// If some it will effects EIP-170: Contract code size limit. Useful to increase this because of tests.
/// By default it is 0x6000 (~25kb).
pub limit_contract_code_size: Option<usize>,
/// A hard memory limit in bytes beyond which [crate::result::OutOfGasError::Memory] cannot be resized.
///
/// In cases where the gas limit may be extraordinarily high, it is recommended to set this to
/// a sane value to prevent memory allocation panics. Defaults to `2^32 - 1` bytes per
/// EIP-1985.
#[cfg(feature = "memory_limit")]
pub memory_limit: u64,
/// Skip balance checks if true. Adds transaction cost to balance to ensure execution doesn't fail.
#[cfg(feature = "optional_balance_check")]
pub disable_balance_check: bool,
/// There are use cases where it's allowed to provide a gas limit that's higher than a block's gas limit. To that
/// end, you can disable the block gas limit validation.
/// By default, it is set to `false`.
#[cfg(feature = "optional_block_gas_limit")]
pub disable_block_gas_limit: bool,
/// EIP-3607 rejects transactions from senders with deployed code. In development, it can be desirable to simulate
/// calls from contracts, which this setting allows.
/// By default, it is set to `false`.
#[cfg(feature = "optional_eip3607")]
pub disable_eip3607: bool,
/// Disables all gas refunds. This is useful when using chains that have gas refunds disabled e.g. Avalanche.
/// Reasoning behind removing gas refunds can be found in EIP-3298.
/// By default, it is set to `false`.
#[cfg(feature = "optional_gas_refund")]
pub disable_gas_refund: bool,
/// Disables base fee checks for EIP-1559 transactions.
/// This is useful for testing method calls with zero gas price.
/// By default, it is set to `false`.
#[cfg(feature = "optional_no_base_fee")]
pub disable_base_fee: bool,
/// Disables the payout of the reward to the beneficiary.
/// By default, it is set to `false`.
#[cfg(feature = "optional_beneficiary_reward")]
pub disable_beneficiary_reward: bool,
}
impl CfgEnv {
/// Returns max code size from [`Self::limit_contract_code_size`] if set
/// or default [`MAX_CODE_SIZE`] value.
pub fn max_code_size(&self) -> usize {
self.limit_contract_code_size.unwrap_or(MAX_CODE_SIZE)
}
pub fn with_chain_id(mut self, chain_id: u64) -> Self {
self.chain_id = chain_id;
self
}
#[cfg(feature = "optional_eip3607")]
pub fn is_eip3607_disabled(&self) -> bool {
self.disable_eip3607
}
#[cfg(not(feature = "optional_eip3607"))]
pub fn is_eip3607_disabled(&self) -> bool {
false
}
#[cfg(feature = "optional_balance_check")]
pub fn is_balance_check_disabled(&self) -> bool {
self.disable_balance_check
}
#[cfg(not(feature = "optional_balance_check"))]
pub fn is_balance_check_disabled(&self) -> bool {
false
}
#[cfg(feature = "optional_gas_refund")]
pub fn is_gas_refund_disabled(&self) -> bool {
self.disable_gas_refund
}
#[cfg(not(feature = "optional_gas_refund"))]
pub fn is_gas_refund_disabled(&self) -> bool {
false
}
#[cfg(feature = "optional_no_base_fee")]
pub fn is_base_fee_check_disabled(&self) -> bool {
self.disable_base_fee
}
#[cfg(not(feature = "optional_no_base_fee"))]
pub fn is_base_fee_check_disabled(&self) -> bool {
false
}
#[cfg(feature = "optional_block_gas_limit")]
pub fn is_block_gas_limit_disabled(&self) -> bool {
self.disable_block_gas_limit
}
#[cfg(not(feature = "optional_block_gas_limit"))]
pub fn is_block_gas_limit_disabled(&self) -> bool {
false
}
#[cfg(feature = "optional_beneficiary_reward")]
pub fn is_beneficiary_reward_disabled(&self) -> bool {
self.disable_beneficiary_reward
}
#[cfg(not(feature = "optional_beneficiary_reward"))]
pub fn is_beneficiary_reward_disabled(&self) -> bool {
false
}
}
impl Default for CfgEnv {
fn default() -> Self {
Self {
chain_id: 1,
perf_analyse_created_bytecodes: AnalysisKind::default(),
limit_contract_code_size: None,
#[cfg(any(feature = "c-kzg", feature = "kzg-rs"))]
kzg_settings: crate::kzg::EnvKzgSettings::Default,
#[cfg(feature = "memory_limit")]
memory_limit: (1 << 32) - 1,
#[cfg(feature = "optional_balance_check")]
disable_balance_check: false,
#[cfg(feature = "optional_block_gas_limit")]
disable_block_gas_limit: false,
#[cfg(feature = "optional_eip3607")]
disable_eip3607: false,
#[cfg(feature = "optional_gas_refund")]
disable_gas_refund: false,
#[cfg(feature = "optional_no_base_fee")]
disable_base_fee: false,
#[cfg(feature = "optional_beneficiary_reward")]
disable_beneficiary_reward: false,
}
}
}
/// The block environment.
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct BlockEnv {
/// The number of ancestor blocks of this block (block height).
pub number: U256,
/// Coinbase or miner or address that created and signed the block.
///
/// This is the receiver address of all the gas spent in the block.
pub coinbase: Address,
/// The timestamp of the block in seconds since the UNIX epoch.
pub timestamp: U256,
/// The gas limit of the block.
pub gas_limit: U256,
/// The base fee per gas, added in the London upgrade with [EIP-1559].
///
/// [EIP-1559]: https://eips.ethereum.org/EIPS/eip-1559
pub basefee: U256,
/// The difficulty of the block.
///
/// Unused after the Paris (AKA the merge) upgrade, and replaced by `prevrandao`.
pub difficulty: U256,
/// The output of the randomness beacon provided by the beacon chain.
///
/// Replaces `difficulty` after the Paris (AKA the merge) upgrade with [EIP-4399].
///
/// NOTE: `prevrandao` can be found in a block in place of `mix_hash`.
///
/// [EIP-4399]: https://eips.ethereum.org/EIPS/eip-4399
pub prevrandao: Option<B256>,
/// Excess blob gas and blob gasprice.
/// See also [`crate::calc_excess_blob_gas`]
/// and [`calc_blob_gasprice`].
///
/// Incorporated as part of the Cancun upgrade via [EIP-4844].
///
/// [EIP-4844]: https://eips.ethereum.org/EIPS/eip-4844
pub blob_excess_gas_and_price: Option<BlobExcessGasAndPrice>,
}
impl BlockEnv {
/// Takes `blob_excess_gas` saves it inside env
/// and calculates `blob_fee` with [`BlobExcessGasAndPrice`].
pub fn set_blob_excess_gas_and_price(&mut self, excess_blob_gas: u64) {
self.blob_excess_gas_and_price = Some(BlobExcessGasAndPrice::new(excess_blob_gas));
}
/// See [EIP-4844] and [`crate::calc_blob_gasprice`].
///
/// Returns `None` if `Cancun` is not enabled. This is enforced in [`Env::validate_block_env`].
///
/// [EIP-4844]: https://eips.ethereum.org/EIPS/eip-4844
#[inline]
pub fn get_blob_gasprice(&self) -> Option<u128> {
self.blob_excess_gas_and_price
.as_ref()
.map(|a| a.blob_gasprice)
}
/// Return `blob_excess_gas` header field. See [EIP-4844].
///
/// Returns `None` if `Cancun` is not enabled. This is enforced in [`Env::validate_block_env`].
///
/// [EIP-4844]: https://eips.ethereum.org/EIPS/eip-4844
#[inline]
pub fn get_blob_excess_gas(&self) -> Option<u64> {
self.blob_excess_gas_and_price
.as_ref()
.map(|a| a.excess_blob_gas)
}
/// Clears environment and resets fields to default values.
#[inline]
pub fn clear(&mut self) {
*self = Self::default();
}
}
impl Default for BlockEnv {
fn default() -> Self {
Self {
number: U256::ZERO,
coinbase: Address::ZERO,
timestamp: U256::from(1),
gas_limit: U256::MAX,
basefee: U256::ZERO,
difficulty: U256::ZERO,
prevrandao: Some(B256::ZERO),
blob_excess_gas_and_price: Some(BlobExcessGasAndPrice::new(0)),
}
}
}
/// The transaction environment.
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct TxEnv {
/// Caller aka Author aka transaction signer.
pub caller: Address,
/// The gas limit of the transaction.
pub gas_limit: u64,
/// The gas price of the transaction.
pub gas_price: U256,
/// The destination of the transaction.
pub transact_to: TxKind,
/// The value sent to `transact_to`.
pub value: U256,
/// The data of the transaction.
pub data: Bytes,
/// The nonce of the transaction.
///
/// Caution: If set to `None`, then nonce validation against the account's nonce is skipped: [InvalidTransaction::NonceTooHigh] and [InvalidTransaction::NonceTooLow]
pub nonce: Option<u64>,
/// The chain ID of the transaction. If set to `None`, no checks are performed.
///
/// Incorporated as part of the Spurious Dragon upgrade via [EIP-155].
///
/// [EIP-155]: https://eips.ethereum.org/EIPS/eip-155
pub chain_id: Option<u64>,
/// A list of addresses and storage keys that the transaction plans to access.
///
/// Added in [EIP-2930].
///
/// [EIP-2930]: https://eips.ethereum.org/EIPS/eip-2930
pub access_list: Vec<AccessListItem>,
/// The priority fee per gas.
///
/// Incorporated as part of the London upgrade via [EIP-1559].
///
/// [EIP-1559]: https://eips.ethereum.org/EIPS/eip-1559
pub gas_priority_fee: Option<U256>,
/// The list of blob versioned hashes. Per EIP there should be at least
/// one blob present if [`Self::max_fee_per_blob_gas`] is `Some`.
///
/// Incorporated as part of the Cancun upgrade via [EIP-4844].
///
/// [EIP-4844]: https://eips.ethereum.org/EIPS/eip-4844
pub blob_hashes: Vec<B256>,
/// The max fee per blob gas.
///
/// Incorporated as part of the Cancun upgrade via [EIP-4844].
///
/// [EIP-4844]: https://eips.ethereum.org/EIPS/eip-4844
pub max_fee_per_blob_gas: Option<U256>,
/// List of authorizations, that contains the signature that authorizes this
/// caller to place the code to signer account.
///
/// Set EOA account code for one transaction
///
/// [EIP-Set EOA account code for one transaction](https://eips.ethereum.org/EIPS/eip-7702)
pub authorization_list: Option<AuthorizationList>,
#[cfg_attr(feature = "serde", serde(flatten))]
#[cfg(feature = "optimism")]
/// Optimism fields.
pub optimism: OptimismFields,
}
pub enum TxType {
Legacy,
Eip1559,
BlobTx,
EofCreate,
}
impl TxEnv {
/// See [EIP-4844], [`Env::calc_data_fee`], and [`Env::calc_max_data_fee`].
///
/// [EIP-4844]: https://eips.ethereum.org/EIPS/eip-4844
#[inline]
pub fn get_total_blob_gas(&self) -> u64 {
GAS_PER_BLOB * self.blob_hashes.len() as u64
}
/// Clears environment and resets fields to default values.
#[inline]
pub fn clear(&mut self) {
*self = Self::default();
}
}
impl Default for TxEnv {
fn default() -> Self {
Self {
caller: Address::ZERO,
gas_limit: u64::MAX,
gas_price: U256::ZERO,
gas_priority_fee: None,
transact_to: TxKind::Call(Address::ZERO), // will do nothing
value: U256::ZERO,
data: Bytes::new(),
chain_id: None,
nonce: None,
access_list: Vec::new(),
blob_hashes: Vec::new(),
max_fee_per_blob_gas: None,
authorization_list: None,
#[cfg(feature = "optimism")]
optimism: OptimismFields::default(),
}
}
}
/// Structure holding block blob excess gas and it calculates blob fee.
///
/// Incorporated as part of the Cancun upgrade via [EIP-4844].
///
/// [EIP-4844]: https://eips.ethereum.org/EIPS/eip-4844
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct BlobExcessGasAndPrice {
/// The excess blob gas of the block.
pub excess_blob_gas: u64,
/// The calculated blob gas price based on the `excess_blob_gas`, See [calc_blob_gasprice]
pub blob_gasprice: u128,
}
impl BlobExcessGasAndPrice {
/// Creates a new instance by calculating the blob gas price with [`calc_blob_gasprice`].
pub fn new(excess_blob_gas: u64) -> Self {
let blob_gasprice = calc_blob_gasprice(excess_blob_gas);
Self {
excess_blob_gas,
blob_gasprice,
}
}
}
/// Additional [TxEnv] fields for optimism.
#[cfg(feature = "optimism")]
#[derive(Clone, Debug, Default, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct OptimismFields {
/// The source hash is used to make sure that deposit transactions do
/// not have identical hashes.
///
/// L1 originated deposit transaction source hashes are computed using
/// the hash of the l1 block hash and the l1 log index.
/// L1 attributes deposit source hashes are computed with the l1 block
/// hash and the sequence number = l2 block number - l2 epoch start
/// block number.
///
/// These two deposit transaction sources specify a domain in the outer
/// hash so there are no collisions.
pub source_hash: Option<B256>,
/// The amount to increase the balance of the `from` account as part of
/// a deposit transaction. This is unconditional and is applied to the
/// `from` account even if the deposit transaction fails since
/// the deposit is pre-paid on L1.
pub mint: Option<u128>,
/// Whether or not the transaction is a system transaction.
pub is_system_transaction: Option<bool>,
/// An enveloped EIP-2718 typed transaction. This is used
/// to compute the L1 tx cost using the L1 block info, as
/// opposed to requiring downstream apps to compute the cost
/// externally.
/// This field is optional to allow the [TxEnv] to be constructed
/// for non-optimism chains when the `optimism` feature is enabled,
/// but the [CfgEnv] `optimism` field is set to false.
pub enveloped_tx: Option<Bytes>,
}
/// Transaction destination
pub type TransactTo = TxKind;
/// Create scheme.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum CreateScheme {
/// Legacy create scheme of `CREATE`.
Create,
/// Create scheme of `CREATE2`.
Create2 {
/// Salt.
salt: U256,
},
}
/// What bytecode analysis to perform.
#[derive(Clone, Default, Debug, Eq, PartialEq, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum AnalysisKind {
/// Do not perform bytecode analysis.
Raw,
/// Perform bytecode analysis.
#[default]
Analyse,
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_validate_tx_chain_id() {
let mut env = Env::default();
env.tx.chain_id = Some(1);
env.cfg.chain_id = 2;
assert_eq!(
env.validate_tx::<crate::LatestSpec>(),
Err(InvalidTransaction::InvalidChainId)
);
}
#[test]
fn test_validate_tx_access_list() {
let mut env = Env::default();
env.tx.access_list = vec![AccessListItem {
address: Address::ZERO,
storage_keys: vec![],
}];
assert_eq!(
env.validate_tx::<crate::FrontierSpec>(),
Err(InvalidTransaction::AccessListNotSupported)
);
}
}