eth_getStorageAt
Returns the value from a storage position at a given address, or in other words, returns the state of the contract's storage, which may not be exposed via the contract's methods.
Parameters
Returns
Example Request and Result for eth_getStorageAt
eth_getStorageAtcontract Storage {
uint pos0;
mapping(address => uint) pos1;
function Storage() {
pos0 = 1234;
pos1[msg.sender] = 5678;
}
}Last updated