Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ as well as a docker-compose file for bringing up local testnets easily
* [`contracts`](./packages/boba/contracts): Solidity smart contracts implementing the fast bridges, the DAO, etc.
* [`gas-price-oracle`](./packages/boba/gas-price-oracle): A custom gas price oracle
* [`gateway`](./packages/boba/gateway): The Boba Web gateway
* [`message-relayer-fast`](./packages/boba/message-relayer-fast): A fast message relayer without a 7 day delay
* [`message-relayer-fast`](./packages/message-relayer): A batch message relayer that can be run for the fast mode without a 7 day delay
* [`register`](./packages/boba/register): Code for registering addresses in the AddressManager
* [`subgraph`](./packages/boba/subgraph): Subgraphs for indexing the **StandardBridge** and **LiquidityPool** contracts

Expand Down
6 changes: 3 additions & 3 deletions ops/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,8 @@ services:
image: bobanetwork/boba_message-relayer-fast:latest
build:
context: ..
dockerfile: ./ops/docker/Dockerfile.boba_message-relayer-fast
dockerfile: ./ops/docker/Dockerfile.message-relayer
entrypoint: ["./wait-for-l1-and-l2.sh", "./relayer-fast.sh"]
environment:
L1_NODE_WEB3_URL: http://l1_chain:8545
L2_NODE_WEB3_URL: http://l2geth:8545
Expand All @@ -308,8 +309,7 @@ services:
FILTER_POLLING_INTERVAL: 30000
MAX_WAIT_TIME_S: 5
MAX_WAIT_TX_TIME_S: 5
# Integration tests require 0 confirmations. Suggested to use 5 for production.
NUM_EVENT_CONFIRMATIONS: 0
FAST_RELAYER: 'true'

batch_submitter:
depends_on:
Expand Down
42 changes: 0 additions & 42 deletions ops/docker/Dockerfile.boba_message-relayer-fast

This file was deleted.

5 changes: 5 additions & 0 deletions ops/docker/Dockerfile.message-relayer
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,9 @@ COPY --from=builder /optimism/packages/message-relayer/node_modules ./node_modul

# copy this over in case you want to run alongside other services
COPY ./ops/scripts/relayer.sh .
COPY ./ops/scripts/relayer-fast.sh .
COPY ./ops/scripts/wait-for-l1-and-l2.sh .

RUN chmod +x ./relayer-fast.sh
RUN chmod +x ./wait-for-l1-and-l2.sh
ENTRYPOINT ["npm", "run", "start"]
1 change: 0 additions & 1 deletion ops/docker/Dockerfile.monorepo
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ COPY integration-tests/package.json ./integration-tests/package.json

COPY packages/boba/contracts/package.json ./packages/boba/contracts/package.json
COPY packages/boba/gas-price-oracle/package.json ./packages/boba/gas-price-oracle/package.json
COPY packages/boba/message-relayer-fast/package.json ./packages/boba/message-relayer-fast/package.json
COPY packages/boba/turing/package.json ./packages/boba/turing/package.json

# copy over the patches, if any...
Expand Down
2 changes: 1 addition & 1 deletion ...sage-relayer-fast/scripts/relayer-fast.sh → ops/scripts/relayer-fast.sh
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ if [[ ! -z "$BOBA_URL" ]]; then
fi

# go go go
exec node ./exec/run-message-relayer-fast.js
exec yarn start
File renamed without changes.
14 changes: 0 additions & 14 deletions packages/boba/message-relayer-fast/.env.example

This file was deleted.

8 changes: 0 additions & 8 deletions packages/boba/message-relayer-fast/.prettierrc.json

This file was deleted.

72 changes: 0 additions & 72 deletions packages/boba/message-relayer-fast/README.md

This file was deleted.

This file was deleted.

This file was deleted.

31 changes: 0 additions & 31 deletions packages/boba/message-relayer-fast/hardhat.config.ts

This file was deleted.

72 changes: 0 additions & 72 deletions packages/boba/message-relayer-fast/package.json

This file was deleted.

Loading