Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
dece4de2
Unverified
Commit
dece4de2
authored
Aug 14, 2024
by
Sebastian Stammler
Committed by
GitHub
Aug 14, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
devnet: enable span batches and use blobs for non-plasma (#11477)
parent
6f9c4f77
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
__init__.py
bedrock-devnet/devnet/__init__.py
+2
-1
docker-compose.yml
ops-bedrock/docker-compose.yml
+2
-4
No files found.
bedrock-devnet/devnet/__init__.py
View file @
dece4de2
...
...
@@ -269,8 +269,10 @@ def devnet_deploy(paths):
if
DEVNET_PLASMA
:
docker_env
[
'PLASMA_ENABLED'
]
=
'true'
docker_env
[
'DA_TYPE'
]
=
'calldata'
else
:
docker_env
[
'PLASMA_ENABLED'
]
=
'false'
docker_env
[
'DA_TYPE'
]
=
'blobs'
if
GENERIC_PLASMA
:
docker_env
[
'PLASMA_GENERIC_DA'
]
=
'true'
...
...
@@ -279,7 +281,6 @@ def devnet_deploy(paths):
docker_env
[
'PLASMA_GENERIC_DA'
]
=
'false'
docker_env
[
'PLASMA_DA_SERVICE'
]
=
'false'
# Bring up the rest of the services.
log
.
info
(
'Bringing up `op-node`, `op-proposer` and `op-batcher`.'
)
run_command
([
'docker'
,
'compose'
,
'up'
,
'-d'
,
'op-node'
,
'op-proposer'
,
'op-batcher'
,
'artifact-server'
],
cwd
=
paths
.
ops_bedrock_dir
,
env
=
docker_env
)
...
...
ops-bedrock/docker-compose.yml
View file @
dece4de2
...
...
@@ -199,13 +199,11 @@ services:
OP_BATCHER_PPROF_ENABLED
:
"
true"
OP_BATCHER_METRICS_ENABLED
:
"
true"
OP_BATCHER_RPC_ENABLE_ADMIN
:
"
true"
OP_BATCHER_BATCH_TYPE
:
0
OP_BATCHER_BATCH_TYPE
:
1
OP_BATCHER_PLASMA_ENABLED
:
"
${PLASMA_ENABLED}"
OP_BATCHER_PLASMA_DA_SERVICE
:
"
${PLASMA_DA_SERVICE}"
OP_BATCHER_PLASMA_DA_SERVER
:
"
http://da-server:3100"
# uncomment to use blobs
# (requires L1 Dencun and L2 Ecotone activation first)
# OP_BATCHER_DATA_AVAILABILITY_TYPE: blobs
OP_BATCHER_DATA_AVAILABILITY_TYPE
:
"
${DA_TYPE}"
op-challenger
:
depends_on
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment