eth_getStorageAt

Returns the value from a storage position at a given address. The storage position is specified by a storage slot index. ⚡ Compute Units: [15 CU](https://docs.conduit.xyz/rpc-nodes/information/compute-units)

Request

This endpoint expects an object.
addressstringRequiredformat: "^0x[0-9a-fA-F]{40}$"

20-byte address of the storage

storagePositionstringRequiredformat: "^0x(0|[1-9a-fA-F][0-9a-fA-F]*)$"

Storage slot index as a hex-encoded quantity (e.g. "0x0", "0x2a"). Leading zeros are not permitted — use the compact quantity form, not the 32-byte-padded form.

blockIdentifierenum or stringRequired
Block number, block hash, or one of "latest", "earliest", "pending", "finalized", "safe"

Response

The value at this storage position, hex-encoded