Challenge Overview
Mythril is a security analysis tool for Ethereum smart contracts, written in Python.
Mythril's --storage option allows reading the storage contents of contract accounts. Its current implementation supports regular storage slots and dynamically sized arrays. In this challenge you'll add support for the following cases:
Mythril's --storage option allows reading the storage contents of contract accounts. Its current implementation supports regular storage slots and dynamically sized arrays. In this challenge you'll add support for the following cases:
- Mappings: https://github.com/ConsenSys/mythril/issues/139
- Dynamically sized arrays for an arbitrary positions: https://github.com/ConsenSys/mythril/issues/138