From 3b8f9b640547bdb509a9bd2bc411dfeed0a1027f Mon Sep 17 00:00:00 2001 From: banteg <4562643+banteg@users.noreply.github.com> Date: Fri, 29 Jul 2022 14:02:44 +0400 Subject: [PATCH] docs: add links to related work --- readme.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/readme.md b/readme.md index 22e96f0..42baba7 100644 --- a/readme.md +++ b/readme.md @@ -24,3 +24,8 @@ how to dump the complete contract storage and print it in a readable way. this tool can already dump the entire storage using `parity_listStorageKeys`, but to decode it we need to collect all preimages. for this we can find all calls to the address using `trace_filter` and then `vmTrace` all transactions and record all preimages. + +## related work + +- `slither-read-storage` can do more advanced [forward storage reading](https://blog.trailofbits.com/2022/07/28/shedding-smart-contract-storage-with-slither/) +- `sol2uml` can draw [storage layout diagrams](https://github.com/naddison36/sol2uml/tree/master/examples/storage)