🔆🔎👀 Smart Contract Storage Viewer, DataType Guesser, Toolbox & Transaction Decoder
Find a file
2024-02-28 19:16:06 +01:00
.github/workflows Update pages.yml 2022-08-19 18:34:26 +02:00
lib support for Alchemy RPC 2022-09-23 14:56:50 +02:00
pages optionally take contract address from window.location.search - fixes #2 2024-02-28 19:16:06 +01:00
public initial 2022-08-02 15:09:47 +02:00
styles add error box 2022-08-02 19:05:55 +02:00
.eslintrc.json initial 2022-08-02 15:09:47 +02:00
.gitignore initial 2022-08-02 15:09:47 +02:00
next.config.js initial 2022-08-02 15:09:47 +02:00
package-lock.json optionally take contract address from window.location.search - fixes #2 2024-02-28 19:16:06 +01:00
package.json optionally take contract address from window.location.search - fixes #2 2024-02-28 19:16:06 +01:00
README.md Update README.md 2022-08-12 14:28:01 +02:00
yarn.lock optionally take contract address from window.location.search - fixes #2 2024-02-28 19:16:06 +01:00

🔆🔎👀 Smart Contract Storage HexViewer

image image

Demo

  • Target - the target contract
  • API Endpoint - your infura (or equivalent) api key

Retrieves smart contract storage and displays it in a hex viewer. Attempts to make sense of the values by guessing the datatype for each slot. Guesses are displayed in the tree-view. Note that you can click on an address to open it on etherscan.

👉 https://tintinweb.github.io/smart-contract-storage-viewer/

🗒️ This is a standalone demo with a trial infura key. I suggest you get your own key as this one will likely be rate-limited very soon ;)

Development

Getting Started

First, run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying pages/index.js. The page auto-updates as you edit the file.

API routes can be accessed on http://localhost:3000/api/hello. This endpoint can be edited in pages/api/hello.js.

The pages/api directory is mapped to /api/*. Files in this directory are treated as API routes instead of React pages.

Acknowledgements