revm-bytecode 10.0.0

EVM Bytecodes
Documentation
//! Crate that contains bytecode types and opcode constants.
//!
//! Legacy bytecode will always contain a jump table.
//!
//! While EIP-7702 bytecode must contains a Address.
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(not(feature = "std"))]
extern crate alloc as std;

pub mod bytecode;
mod decode_errors;
/// EIP-7702 bytecode.
pub mod eip7702;
/// Iterator for the bytecode.
mod iter;
mod legacy;
pub mod opcode;
pub mod utils;

/// Re-export of bitvec crate, used to store legacy bytecode jump table.
pub use bitvec;
pub use bytecode::{Bytecode, BytecodeKind};
pub use decode_errors::BytecodeDecodeError;
pub use iter::BytecodeIterator;
pub use legacy::JumpTable;
pub use opcode::OpCode;
pub use primitives;