Skip to content

Commit

Permalink
Merge pull request ethereum-optimism#7672 from ethereum-optimism/feat…
Browse files Browse the repository at this point in the history
…/artifact-server-devnet

devnet: run artifact server
  • Loading branch information
tynes authored Oct 13, 2023
2 parents cd3f9d5 + 58016a0 commit b88fd77
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bedrock-devnet/devnet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,13 +232,18 @@ def devnet_deploy(paths):
batch_inbox_address = rollup_config['batch_inbox_address']
log.info(f'Using batch inbox {batch_inbox_address}')

log.info('Bringing up everything else.')
log.info('Bringing up `op-node`, `op-proposer` and `op-batcher`.')
run_command(['docker', 'compose', 'up', '-d', 'op-node', 'op-proposer', 'op-batcher'], cwd=paths.ops_bedrock_dir, env={
'PWD': paths.ops_bedrock_dir,
'L2OO_ADDRESS': l2_output_oracle,
'SEQUENCER_BATCH_INBOX_ADDRESS': batch_inbox_address
})

log.info('Bringing up `artifact-server`')
run_command(['docker', 'compose', 'up', '-d', 'artifact-server'], cwd=paths.ops_bedrock_dir, env={
'PWD': paths.ops_bedrock_dir
})

log.info('Devnet ready.')


Expand Down

0 comments on commit b88fd77

Please sign in to comment.