1//! Common EVM-related types shared across crates. 2 3use alloy_primitives::{Address, map::HashMap}; 4 5/// Map keyed by breakpoints char to their location (contract address, pc) 6pub type Breakpoints = HashMap<char, (Address, usize)>;