Skip to content

Commit

Permalink
Merge pull request #66 from chainbound/feat/just-dora
Browse files Browse the repository at this point in the history
feat: just dora command
  • Loading branch information
thedevbirb authored Jun 5, 2024
2 parents 6c42d3c + f05cdf2 commit 93e7d3d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@ boost-logs:
sidecar-logs:
docker logs -f `docker ps --format "{{{{.ID}}\t{{{{.Names}}" | grep "mev-sidecar-api" | awk '{print $$1}'`

# show the dora explorer in the browser. NOTE: works only for Linux and MacOS at the moment
dora:
@url=$(just inspect | grep 'dora\s*http' | awk -F'-> ' '{print $2}' | awk '{print $1}') && \
if [ "$(uname)" = "Darwin" ]; then \
open "$url"; \
else \
xdg-open "$url"; \
fi

# manually send a preconfirmation to the bolt devnet
send-preconf:
cd bolt-spammer && RUST_LOG=info cargo run -- \
Expand Down

0 comments on commit 93e7d3d

Please sign in to comment.