Skip to content

Commit

Permalink
Merge pull request #62 from chainbound/feat/sidecar/builder-api
Browse files Browse the repository at this point in the history
Sidecar: `builder-API` implementation
  • Loading branch information
merklefruit authored Jul 4, 2024
2 parents e71c61a + e8ae749 commit 2364a25
Show file tree
Hide file tree
Showing 49 changed files with 5,117 additions and 1,054 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*_dump.log
14 changes: 10 additions & 4 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ sidecar-dump:
@id=$(docker ps -n 100 | grep sidecar | awk -F' ' '{print $1}') && \
docker logs $id 2>&1 | tee sidecar_dump.log


# show the logs for the bolt devnet builder
kill-builder:
@id=$(docker ps -n 100 | grep bolt-builder | awk -F' ' '{print $1}') && \
docker stop $id

# 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}') && \
Expand Down Expand Up @@ -103,19 +109,19 @@ build-images:

# build the docker image for the bolt builder
_build-builder:
cd builder && docker build -t ghcr.io/chainbound/bolt-builder:0.1.0 .
cd builder && docker buildx build -t ghcr.io/chainbound/bolt-builder:0.1.0 .

# build the docker image for the bolt relay
_build-relay:
cd mev-boost-relay && docker build -t ghcr.io/chainbound/bolt-relay:0.1.0 .
cd mev-boost-relay && docker buildx build -t ghcr.io/chainbound/bolt-relay:0.1.0 .

# build the docker image for the bolt sidecar
_build-sidecar:
cd bolt-sidecar && docker build -t ghcr.io/chainbound/bolt-sidecar:0.1.0 .
cd bolt-sidecar && docker buildx build -t ghcr.io/chainbound/bolt-sidecar:0.1.0 .

# build the docker image for the bolt mev-boost sidecar
_build-mevboost:
cd mev-boost && docker build -t ghcr.io/chainbound/bolt-mev-boost:0.1.0 .
cd mev-boost && docker buildx build -t ghcr.io/chainbound/bolt-mev-boost:0.1.0 .

# push all the docker images to the private github container registry
_push-images:
Expand Down
1 change: 1 addition & 0 deletions bolt-sidecar/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
target/
.env
Loading

0 comments on commit 2364a25

Please sign in to comment.