revm_primitives/eip7702.rs
1//! EIP-7702: Set EOA Account Code
2//!
3//! Constants for account authorization and delegation functionality.
4
5/// Base cost of updating authorized account.
6pub const PER_AUTH_BASE_COST: u64 = 12500;
7
8/// Cost of creating authorized account that was previously empty.
9pub const PER_EMPTY_ACCOUNT_COST: u64 = 25000;