Use eth_getStorageAt instead
Chainstack BASE nodes are on Reth. Reth does not support the debug_storageRangeAt
method. See Using eth_getStorageAt instead of debug_storageRangeAt on Reth.
The debug_storageRangeAt
RPC method retrieves storage entries from a contract at a specific block. This method is useful for developers and analysts who need to inspect the state of a contract’s storage at a particular point in time.
Get you own node endpoint today
Start for free and get your app to production levels immediately. No credit card required.
You can sign up with your GitHub, X, Google, or Microsoft account.
To use debug_storageRangeAt
, send a POST request with a JSON RPC call in the body.
string
): The hash of the block.integer
): The index of the transaction in the block.string
): The address of the contract.string
): The starting point of the storage to inspect.integer
): The maximum number of storage entries to return.The response includes storage entries within the specified range and a flag indicating if the storage snapshot is complete.
object
): A map of storage entries.boolean
): Indicates whether the snapshot of storage is complete.The debug_storageRangeAt
method is essential for:
Storage data for the specified range
The response is of type object
.
Use eth_getStorageAt instead
Chainstack BASE nodes are on Reth. Reth does not support the debug_storageRangeAt
method. See Using eth_getStorageAt instead of debug_storageRangeAt on Reth.
The debug_storageRangeAt
RPC method retrieves storage entries from a contract at a specific block. This method is useful for developers and analysts who need to inspect the state of a contract’s storage at a particular point in time.
Get you own node endpoint today
Start for free and get your app to production levels immediately. No credit card required.
You can sign up with your GitHub, X, Google, or Microsoft account.
To use debug_storageRangeAt
, send a POST request with a JSON RPC call in the body.
string
): The hash of the block.integer
): The index of the transaction in the block.string
): The address of the contract.string
): The starting point of the storage to inspect.integer
): The maximum number of storage entries to return.The response includes storage entries within the specified range and a flag indicating if the storage snapshot is complete.
object
): A map of storage entries.boolean
): Indicates whether the snapshot of storage is complete.The debug_storageRangeAt
method is essential for:
Storage data for the specified range
The response is of type object
.