forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
export DEPLOYMENT_CONTEXT=cel2-migration | ||
export IMPL_SALT=$(openssl rand -hex 32) | ||
|
||
export L1_RPC_URL="http://localhost:8545" | ||
export L1_RPC_KIND=debug_geth | ||
|
||
export L2_RPC_URL="http://localhost:9545" | ||
|
||
export GS_ADMIN_ADDRESS="0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" | ||
export GS_ADMIN_PRIVATE_KEY="0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80" | ||
|
||
export GS_BATCHER_ADDRESS="0x70997970C51812dc3A010C7d01b50e0d17dc79C8" | ||
export GS_BATCHER_PRIVATE_KEY="0x59c6995e998f97a5a0044966f0945389dc9e86dae88c7a8412f4603b6b78690d" | ||
|
||
export GS_PROPOSER_ADDRESS="0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC" | ||
export GS_PROPOSER_PRIVATE_KEY="0x5de4111afa1a4b94908f83103eb1f1706367c2e68ca870fc3fb9a804cdab365a" | ||
|
||
export GS_SEQUENCER_ADDRESS="0x90F79bf6EB2c4f870365E785982E1f101E93b906" | ||
export GS_SEQUENCER_PRIVATE_KEY="0x7c852118294e51e653712a81e05800f419141751be58f605c371e15141b007a6" | ||
|
||
export DG_TYPE=0 | ||
export PROPOSAL_INTERVAL="10s" | ||
|
||
if [ -f "config/deployment-l1.json" ]; then | ||
# TODO(pl): FInd out why we cannot set both | ||
# export L2OO_ADDRESS=$(cat config/deployment-l1.json | jq -r .L2OutputOracleProxy) | ||
export DGF_ADDRESS=$(cat config/deployment-l1.json | jq -r .DisputeGameFactoryProxy) | ||
fi | ||
|
||
|