Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/treethought/ethscan
Ethereum TUI block explorer
https://github.com/treethought/ethscan
ethereum golang tui web3
Last synced: 25 days ago
JSON representation
Ethereum TUI block explorer
- Host: GitHub
- URL: https://github.com/treethought/ethscan
- Owner: treethought
- License: mit
- Created: 2022-09-22T22:38:59.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-07T04:04:10.000Z (over 1 year ago)
- Last Synced: 2024-10-05T09:03:38.058Z (about 1 month ago)
- Topics: ethereum, golang, tui, web3
- Language: Go
- Homepage:
- Size: 560 KB
- Stars: 5
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ethscan
ethscan is a TUI Ethereum block explorer with the goal of providing a convenient
and useful alternative to web app explorers.Inspired by the wonderful [k9s](https://github.com/derailed/k9s).
## Install
```
go install github.com/treethought/ethscan@latest
```## Usage
### Configuration
Create a config file at `~/ethscan.yaml` (or somewhere else and pass it via `--config`).
Set an RPC URL (https:// or ws://) and an etherscan API key.
You can get a free RPC endpoint at https://quicknode.com.
```
rpc_url: YOUR_ENDPOINT
etherscan_key: YOUR_API_KEY
```### Running
Currently only supports subscribing to blocks and inspecting them as they are received.
To get started simply run `etherscan` if using the binary, or `go run main.go`
## Screenshots
#### Blocks
![Blocks](./assets/blocks.png)
#### Block Transactions
![Block](./assets/block.png)
#### Transaction
![Transaction](./assets/transaction.png)