From 65ddd7aefdca161e6e60694ce00488db87a77c4e Mon Sep 17 00:00:00 2001 From: bap2pecs Date: Mon, 18 Nov 2024 15:01:06 +0800 Subject: [PATCH 1/3] don't suppress command output --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 54dc706..35660fe 100644 --- a/Makefile +++ b/Makefile @@ -55,10 +55,10 @@ l2-gen-addresses: ## Prepare for running the OP chain l2-prepare: - @$(eval export IMPL_SALT := $(shell openssl rand -hex 32)) - @$(CURDIR)/scripts/l2/l2-generate-deploy-config.sh $(CURDIR)/optimism - @$(CURDIR)/scripts/l2/l2-deploy-l1-contracts.sh $(CURDIR)/optimism - @$(CURDIR)/scripts/l2/l2-generate-l2-config.sh $(CURDIR)/optimism $(CURDIR)/.deploy + $(eval export IMPL_SALT := $(shell openssl rand -hex 32)) + $(CURDIR)/scripts/l2/l2-generate-deploy-config.sh $(CURDIR)/optimism + $(CURDIR)/scripts/l2/l2-deploy-l1-contracts.sh $(CURDIR)/optimism + $(CURDIR)/scripts/l2/l2-generate-l2-config.sh $(CURDIR)/optimism $(CURDIR)/.deploy .PHONY: l2-prepare ## Start the OP chain core components (op-node, op-geth, proposer, batcher) From f8df7d4087d281267b11879087cbcf340b5c55e6 Mon Sep 17 00:00:00 2001 From: bap2pecs Date: Mon, 18 Nov 2024 15:01:22 +0800 Subject: [PATCH 2/3] update optimism submodule --- optimism | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/optimism b/optimism index 7914128..32f912d 160000 --- a/optimism +++ b/optimism @@ -1 +1 @@ -Subproject commit 791412841429f901d6cf68d5e1de885072cbfc4f +Subproject commit 32f912d130b80293e91bdc4d5ffd7e462454a699 From bdebdda838fc9157058aa3018686ac3b8b8dc4ba Mon Sep 17 00:00:00 2001 From: bap2pecs Date: Mon, 18 Nov 2024 15:53:50 +0800 Subject: [PATCH 3/3] add comments --- configs/l1/network_params.yaml.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/l1/network_params.yaml.example b/configs/l1/network_params.yaml.example index a36e39c..cc1aa0e 100644 --- a/configs/l1/network_params.yaml.example +++ b/configs/l1/network_params.yaml.example @@ -11,7 +11,7 @@ network_params: port_publisher: el: enabled: true - public_port_start: 18543 + public_port_start: 18543 # JSON-RPC port 18545 cl: enabled: true - public_port_start: 15051 \ No newline at end of file + public_port_start: 15051 # Beacon API port 15052 \ No newline at end of file