1//! EIP-7702 constants 2 3/// Base cost of updating authorized account. 4pub const PER_AUTH_BASE_COST: u64 = 12500; 5 6/// Cost of creating authorized account that was previously empty. 7pub const PER_EMPTY_ACCOUNT_COST: u64 = 25000;