//! Crate that contains bytecode types and opcode constants.
//!
//! Legacy bytecode will always contain a jump table.
//!
//! While EIP-7702 bytecode must contains a Address.
extern crate alloc as std;
/// EIP-7702 bytecode.
/// Iterator for the bytecode.
/// Re-export of bitvec crate, used to store legacy bytecode jump table.
pub use bitvec;
pub use ;
pub use BytecodeDecodeError;
pub use BytecodeIterator;
pub use JumpTable;
pub use OpCode;
pub use primitives;