Explorer mode basic frontend #8
Labels
No labels
good first issue
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/monza#8
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Monza implements
explorer
command: application runs in interactive mode and provides user interface to scroll over blocks, look for transactions and produced notifications.In this issue, implement new
-http=<addr>:<port>
flag (similar to-http
flag ingo tool pprof
) inexplorer
command.When flag is enabled, monza should run web-server and generate static HTML page with list of blocks. This list of blocks should be paginated, because there might be many many blocks in the chain. Provide brief information about block: timestamp and number of transaction in the block.
Add endpoint for detailed information about block: transaction details and notifications. Add links to travel back and forth.
Put implementation in a separate source code file, keep changes in
explorer.go
small.