From 250516c8ebef2167e3328ef8522ba772ccf9869e Mon Sep 17 00:00:00 2001 From: Ethen Pociask Date: Mon, 30 Sep 2024 14:43:22 -0700 Subject: [PATCH 1/3] feat: bump max eigenda batch size --- scripts/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/config.ts b/scripts/config.ts index c75d7cc..f94ef7b 100644 --- a/scripts/config.ts +++ b/scripts/config.ts @@ -206,7 +206,7 @@ function writeConfigs(argv: any) { "redis-url": argv.redisUrl, "max-delay": "15m", "wait-for-max-delay": true, - "max-eigenda-batch-size": 2_000_000, // 2MB + "max-eigenda-batch-size": 16_000_000, // 16MB "l1-block-bound": "ignore", "parent-chain-wallet" : { "account": namedAddress("sequencer"), From fa23a95cb4eea6bc07c62c62a0228a00864eefa9 Mon Sep 17 00:00:00 2001 From: Ethen Pociask Date: Sun, 20 Oct 2024 03:42:21 -0400 Subject: [PATCH 2/3] fix(CI): Update Dockerfile to use env for contracts commit --- rollupcreator/Dockerfile | 2 +- test-node.bash | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rollupcreator/Dockerfile b/rollupcreator/Dockerfile index 0860cbd..a45b89c 100644 --- a/rollupcreator/Dockerfile +++ b/rollupcreator/Dockerfile @@ -9,7 +9,7 @@ RUN apt-get update && \ WORKDIR /workspace # Clone the repository and checkout the specified branch RUN git clone --no-checkout https://github.com/layr-labs/nitro-contracts.git ./ -RUN git checkout 4fb6492ba3892863b3b66cd1335b49152cf9d975 +RUN git checkout ${NITRO_CONTRACTS_BRANCH} # Install Foundry RUN curl -L https://foundry.paradigm.xyz | bash diff --git a/test-node.bash b/test-node.bash index 8f7c22d..67a2bf3 100755 --- a/test-node.bash +++ b/test-node.bash @@ -7,7 +7,7 @@ BLOCKSCOUT_VERSION=offchainlabs/blockscout:v1.0.0-c8db5b1 # This commit matches the v1.2.1 contracts, with additional support for CacheManger deployment. # Once v1.2.2 is released, we can switch to that version. -DEFAULT_NITRO_CONTRACTS_VERSION="a450cd9278f067b480671e5658804f029da38ea1" +DEFAULT_NITRO_CONTRACTS_VERSION="4fb6492ba3892863b3b66cd1335b49152cf9d975" DEFAULT_TOKEN_BRIDGE_VERSION="v1.2.1" # Set default versions if not overriden by provided env vars From 053ae6329b074d2b609c6a8ba3e2b4fa4a2e5743 Mon Sep 17 00:00:00 2001 From: Ethen Pociask Date: Sun, 20 Oct 2024 03:47:59 -0400 Subject: [PATCH 3/3] fix(CI): Update Dockerfile to use env for contracts commit - disable wait for max delay --- scripts/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/config.ts b/scripts/config.ts index d20c5c2..217f0d6 100644 --- a/scripts/config.ts +++ b/scripts/config.ts @@ -205,7 +205,7 @@ function writeConfigs(argv: any) { "enable": false, "redis-url": argv.redisUrl, "max-delay": "15m", - "wait-for-max-delay": true, + "wait-for-max-delay": false, "max-eigenda-batch-size": 16_000_000, // 16MB "l1-block-bound": "ignore", "parent-chain-wallet" : {