Skip to content

Commit

Permalink
Update README with the new binary CLI commands
Browse files Browse the repository at this point in the history
  • Loading branch information
m-Peter committed Oct 17, 2024
1 parent 15bebd8 commit cd0b1a7
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,35 @@ The basic design of the EVM Gateway consists of a couple of components:

We recommend using Docker to run the EVM Gateway, as detailed in the subsequent section. Alternatively, if you decide to build the binaries manually, you can do so by running:

```bash
# Make sure you pull the latest changes before build
git pull origin main

make build
```
go build -o evm-gateway cmd/main/main.go

To view the binary version:

```bash
./flow-evm-gateway version
```

To view all the available flags for running the EVM Gateway Node:

```bash
./flow-evm-gateway help run
```

The binary can then be run using the correct flags (see the table below or the example in the "running" section).
The binary can then be run using the appropriate flags:

```bash
./flow-evm-gateway run {flags}
```
./evm-gateway {flags}

To run a local version, for development:

```bash
make start-local-bin
```

# Running
Expand Down

0 comments on commit cd0b1a7

Please sign in to comment.