Skip to content

Commit

Permalink
Fix/relayer misconfig (#47)
Browse files Browse the repository at this point in the history
* fix: update relayer l2 to l1 misconfigs

* fix: update relayer l2 to l1 processor misconfigs
  • Loading branch information
nmjustinchan authored Dec 24, 2024
1 parent 4542ec3 commit d6706a2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/relayer/.default.env
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ CORS_ORIGINS=*
NUM_GOROUTINES=100
BLOCK_BATCH_SIZE=10
HEADER_SYNC_INTERVAL_IN_SECONDS=60
PROCESSOR_PRIVATE_KEY=bcdf20249abf0ed6d944c0288fad489e33f66b3960d9e6229c1cd214ed3bbe31
PROCESSOR_PRIVATE_KEY=bcdf20249abf0ed6d944c0288fad489e33f66b3960d9e6229c1cd214ed3bbe31
14 changes: 7 additions & 7 deletions packages/relayer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ services:
command:
- processor
- --queue.prefetch=100
- --processorPrivateKey=bcdf20249abf0ed6d944c0288fad489e33f66b3960d9e6229c1cd214ed3bbe31
- --processorPrivateKey=${PROCESSOR_PRIVATE_KEY}
- --destBridgeAddress=${L2_BRIDGE_ADDRESS}
- --destERC20VaultAddress=${L2_ERC20_VAULT_ADDRESS}
- --destERC721Address=${L2_ERC721_VAULT_ADDRESS}
Expand Down Expand Up @@ -157,8 +157,8 @@ services:
- --db.name=relayer
- --db.password=root
- --db.username=root
- --srcRpcUrl=${L1_RPC_URL}
- --destRpcUrl=${L2_RPC_URL}
- --srcRpcUrl=${L2_RPC_URL}
- --destRpcUrl=${L1_RPC_URL}
- --destTaikoAddress=${L1_TAIKO_ADDRESS}
- --processingFeeMultiplier=1.75
networks:
Expand All @@ -181,8 +181,8 @@ services:
- --destERC1155Address=${L1_ERC1155_VAULT_ADDRESS}
- --destTaikoAddress=${L1_TAIKO_ADDRESS}
- --srcSignalServiceAddress=${L2_SIGNAL_SERVICE_ADDRESS}
- --srcRpcUrl=${L1_RPC_URL}
- --destRpcUrl=${L2_RPC_URL}
- --srcRpcUrl=${L2_RPC_URL}
- --destRpcUrl=${L1_RPC_URL}
- --confirmations=0
- --headerSyncInterval=2
- --profitableOnly=false
Expand Down Expand Up @@ -219,8 +219,8 @@ services:
- --srcBridgeAddress=${L2_BRIDGE_ADDRESS}
- --destBridgeAddress=${L1_BRIDGE_ADDRESS}
- --srcSignalServiceAddress=${L2_SIGNAL_SERVICE_ADDRESS}
- --srcRpcUrl=${L1_RPC_URL}
- --destRpcUrl=${L2_RPC_URL}
- --srcRpcUrl=${L2_RPC_URL}
- --destRpcUrl=${L1_RPC_URL}
- --queue.host=rabbitmq
- --queue.password=root
- --queue.port=5672
Expand Down

0 comments on commit d6706a2

Please sign in to comment.