Skip to content
Open
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
5 changes: 3 additions & 2 deletions slot_layout_probe.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
"""Helper utilities for probing and inspecting slot layouts.
Importing this module has no side effects.
"""
from __future__ import annotations

# slot_layout_probe.py
b/slot_layout_probe.py
# Probe a contract's storage layout: scan a set/range of slots at two blocks,
# report non-zero values and changes, and emit commitments + pair roots (CSV/STDOUT).
import logging


# Library-friendly logger (silent unless configured by the host app)
logger = logging.getLogger(__name__)
if not logger.handlers:
logger.addHandler(logging.NullHandler())
logger.propagate = False

from __future__ import annotations
__version__: str = "0.1.0"
__author__: str = "Contributors"

Expand Down