Skip to content
This repository was archived by the owner on May 30, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,24 @@ Run RETH in docker:
```bash
cd docker
docker compose up -d
docker compose down
```

Compile `evm-middleware` binary:

```bash
make build
```

Run `evm-middleware` binary:

```bash
./build/evm-middleware run --jwt-secret $(cat docker/jwttoken/jwt.hex)
```

Compile rollkit from `feature/exec_api` branch and run it:

```bash
git checkout feature/exec_api
go build ./cmd/rollkit
./rollkit start
```