Skip to content
ihategas.xyz

Storage Slot Reader

Reads public data

Read any contract storage slot directly.

Network

Slot type

declaration order, starting at 0
Computed slot
0x0000000000000000000000000000000000000000000000000000000000000000
Read any value a contract stores, including ones it has no getter for.

About storage slot reader

Every contract variable lives at a numbered slot, and a public getter is a convenience the author chose to add rather than a requirement. This reads any slot directly, including ones with no getter — useful for finding an owner a contract does not advertise, or the real value behind a view function you do not trust. Mappings are handled too, since their location is derived by hashing the key with the slot rather than being sequential.

More developer tools