Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix typo in EIP-7702 bytecode format comment (magic byte)
  • Loading branch information
Galoretka authored Jul 18, 2025
commit bd88b131d4deaa510f0ee2f3d3c2b66f4fdf6ef5
2 changes: 1 addition & 1 deletion crates/bytecode/src/eip7702.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub const EIP7702_VERSION: u8 = 0;
/// Bytecode of delegated account, specified in EIP-7702
///
/// Format of EIP-7702 bytecode consist of:
/// `0xEF00` (MAGIC) + `0x00` (VERSION) + 20 bytes of address.
/// `0xEF01` (MAGIC) + `0x00` (VERSION) + 20 bytes of address.
#[derive(Clone, Debug, PartialEq, Eq, Hash, Ord, PartialOrd)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Eip7702Bytecode {
Expand Down