forked from taikoxyz/simple-taiko-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refac: update docker compose and env sample
- Loading branch information
1 parent
a7ef011
commit 56cfeff
Showing
9 changed files
with
277 additions
and
537 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
services: | ||
set-bridge-address-l1: | ||
image: nethsurge/protocol:composite-proof-debug | ||
environment: | ||
FOUNDRY_PROFILE: layer1 | ||
DOMAIN: ${L2_CHAIN_ID} | ||
ADDRESS: ${L2_BRIDGE_ADDRESS} | ||
NAME: ${BRIDGE_32_BYTES} | ||
PROXY_ADDRESS: ${L1_SHARED_ADDRESS_MANAGER} | ||
FORK_URL: ${L1_ENDPOINT_HTTP} | ||
PRIVATE_KEY: ${OWNER_PRIVATE_KEY} | ||
entrypoint: | ||
- sh | ||
- -c | ||
command: > | ||
'forge script ./script/shared/SetAddress.s.sol --fork-url "${FORK_URL}" --broadcast -vvv' | ||
set-signal-service-address-l1: | ||
image: nethsurge/protocol:composite-proof-debug | ||
environment: | ||
FOUNDRY_PROFILE: layer1 | ||
DOMAIN: ${L2_CHAIN_ID} | ||
ADDRESS: ${L2_SIGNAL_SERVICE_ADDRESS} | ||
NAME: ${SIGNAL_SERVICE_32_BYTES} | ||
PROXY_ADDRESS: ${L1_SHARED_ADDRESS_MANAGER} | ||
FORK_URL: ${L1_ENDPOINT_HTTP} | ||
PRIVATE_KEY: ${OWNER_PRIVATE_KEY} | ||
entrypoint: | ||
- sh | ||
- -c | ||
command: > | ||
'forge script ./script/shared/SetAddress.s.sol --fork-url "${FORK_URL}" --broadcast -vvv' | ||
networks: | ||
- surge | ||
profiles: | ||
- set-signal-service | ||
|
||
set-bridge-address-l2: | ||
image: nethsurge/protocol:composite-proof-debug | ||
environment: | ||
FOUNDRY_PROFILE: layer1 | ||
DOMAIN: ${L1_CHAIN_ID} | ||
ADDRESS: ${L1_BRIDGE_ADDRESS} | ||
NAME: ${BRIDGE_32_BYTES} | ||
PROXY_ADDRESS: ${L2_SHARED_ADDRESS_MANAGER} | ||
FORK_URL: ${L2_ENDPOINT_HTTP} | ||
PRIVATE_KEY: ${OWNER_PRIVATE_KEY} | ||
entrypoint: | ||
- sh | ||
- -c | ||
command: > | ||
'forge script ./script/shared/SetAddress.s.sol --fork-url "${FORK_URL}" --broadcast -vvv' | ||
networks: | ||
- surge | ||
profiles: | ||
- set-bridge | ||
|
||
set-signal-service-address-l2: | ||
image: nethsurge/protocol:composite-proof-debug | ||
environment: | ||
FOUNDRY_PROFILE: layer1 | ||
DOMAIN: ${L1_CHAIN_ID} | ||
ADDRESS: ${L2_SIGNAL_SERVICE_ADDRESS} | ||
NAME: ${SIGNAL_SERVICE_32_BYTES} | ||
PROXY_ADDRESS: ${L2_SHARED_ADDRESS_MANAGER} | ||
FORK_URL: ${L2_ENDPOINT_HTTP} | ||
PRIVATE_KEY: ${OWNER_PRIVATE_KEY} | ||
entrypoint: | ||
- sh | ||
- -c | ||
command: > | ||
'forge script ./script/shared/SetAddress.s.sol --fork-url "${FORK_URL}" --broadcast -vvv' | ||
networks: | ||
- surge | ||
profiles: | ||
- set-signal-service | ||
networks: | ||
surge: | ||
name: surge-network |
Oops, something went wrong.