Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/openchainxyz/ethereum-transaction-viewer-frontend
Frontend for https://tx.eth.samczsun.com/
https://github.com/openchainxyz/ethereum-transaction-viewer-frontend
Last synced: 2 months ago
JSON representation
Frontend for https://tx.eth.samczsun.com/
- Host: GitHub
- URL: https://github.com/openchainxyz/ethereum-transaction-viewer-frontend
- Owner: openchainxyz
- Archived: true
- Created: 2022-10-06T05:33:36.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T19:07:56.000Z (about 2 years ago)
- Last Synced: 2024-08-03T13:03:56.980Z (6 months ago)
- Language: TypeScript
- Size: 699 KB
- Stars: 391
- Watchers: 10
- Forks: 67
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-web3-tools-and-dapps - Ethereum Transaction Viewer - Explore the frontend of the Ethereum transaction viewer with open source code available at https://tx.eth.samczsun.com/. (dApps directory / Smart Contract Tools)
README
# ethereum-tracing-srv frontend
This is the frontend to the [Ethereum Transaction Viewer](https://tx.eth.samczsun.com/). By default, it's configured
to use the production backend.TypeScript is disabled as the code is still kind of spaghetti and doesn't fully type-check. I'm not a frontend dev
so I doubt much of it is idiomatic either.The main rendering logic is in [index.tsx](pages/index.tsx), which then
delegates out to the various components in [components/trace](components/trace). There's
a lot of duplicated code from rapidly prototyping a schema that works.To bring up the frontend, just
```bash
pnpm install
pnpm run dev
```To build an image, just
```bash
docker build .
```