Storage Subquery
Query a storage slot in the past
Description
Limits
Builder
Examples
const storageSubquery: StorageSubquery = buildStorageSubquery(9000000)
.address("0xd9e10c6b1bd26de4e2749ce8afe8dd64294bcbf5")
.slot(3);const mappedSlot = getSlotForMapping(
2, // slot of the mapping
"address", // data type of the mapping key
"0x4C5252bE8474664e14c9C122C295AB4e06D37cF0" // mapping key
);
const storageSubquery: StorageSubquery = buildStorageSubquery(9000000)
.address("0xd9e10c6b1bd26de4e2749ce8afe8dd64294bcbf5")
.slot(mappedSlot);Last updated