mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-14 08:28:02 -05:00
37 lines
687 B
Markdown
37 lines
687 B
Markdown
# Bridge
|
|
|
|
This repo contains the Scroll bridge.
|
|
|
|
In addition, launching the bridge will launch a separate instance of l2geth, and sets up a communication channel
|
|
between the two, over JSON-RPC sockets.
|
|
|
|
Something we should pay attention is that all private keys inside sender instance cannot be duplicated.
|
|
|
|
## Dependency
|
|
|
|
+ install `abigen`
|
|
|
|
``` bash
|
|
go install -v github.com/scroll-tech/go-ethereum/cmd/abigen
|
|
```
|
|
|
|
## Build
|
|
|
|
```bash
|
|
make clean
|
|
make bridge
|
|
```
|
|
|
|
## Start
|
|
* use default ports and config.json
|
|
|
|
```bash
|
|
./build/bin/bridge --http
|
|
```
|
|
|
|
* use specified ports and config.json
|
|
|
|
```bash
|
|
./build/bin/bridge --config ./config.json --http --http.addr localhost --http.port 8290
|
|
```
|