1fn is_low_level_evm_member(name: &str) -> bool { 2 matches!(name, "call" | "delegatecall" | "staticcall" | "callcode") 3} 4