Solidity Nested Mapping Subquery
Query a nested mapping
Description
Solidity Nested Mapping Subqueries provide information about a contract's nested mapping (up to a mapping depth of 4) at some past block number. A very useful tool for looking up storage slots/mappings for contract addresses is evm.storage.
Limits
Maximum of 32 (Account + Storage + Nested Mapping) subqueries per Query.
Builder
buildSolidityNestedMappingSubquery(blockNum)
Examples
Above code block corresponds to the following nested mapping:
mapping(address => mapping(address => mapping(uint24 => address))) public override getPool;
Last updated