kaia_getStorageAt
Returns the value from a storage position at a given address.
Parameters
Type
Description
Return Value
Type
Description
Example
contract Storage {
uint pos0;
mapping(address => uint) pos1;
function Storage() {
pos0 = 1234;
pos1[msg.sender] = 5678;
}
}Last updated
Was this helpful?