From caa5b768b63e54f607d93f2f89560d69b70d253a Mon Sep 17 00:00:00 2001 From: tom Date: Fri, 3 Jan 2025 12:27:28 +0100 Subject: [PATCH] change default value for NEXT_PUBLIC_ROLLUP_OUTPUT_ROOTS_ENABLED to "false" --- configs/app/features/rollup.ts | 2 +- docs/ENVS.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/app/features/rollup.ts b/configs/app/features/rollup.ts index 3728e60c18..e8f5cac92f 100644 --- a/configs/app/features/rollup.ts +++ b/configs/app/features/rollup.ts @@ -31,7 +31,7 @@ const config: Feature<{ type, L1BaseUrl: stripTrailingSlash(L1BaseUrl), L2WithdrawalUrl: type === 'optimistic' ? L2WithdrawalUrl : undefined, - outputRootsEnabled: type === 'optimistic' && getEnvValue('NEXT_PUBLIC_ROLLUP_OUTPUT_ROOTS_ENABLED') !== 'false', + outputRootsEnabled: type === 'optimistic' && getEnvValue('NEXT_PUBLIC_ROLLUP_OUTPUT_ROOTS_ENABLED') === 'true', parentChainName: type === 'arbitrum' ? getEnvValue('NEXT_PUBLIC_ROLLUP_PARENT_CHAIN_NAME') : undefined, homepage: { showLatestBlocks: getEnvValue('NEXT_PUBLIC_ROLLUP_HOMEPAGE_SHOW_LATEST_BLOCKS') === 'true', diff --git a/docs/ENVS.md b/docs/ENVS.md index c96fd7a319..0bd519783c 100644 --- a/docs/ENVS.md +++ b/docs/ENVS.md @@ -455,7 +455,7 @@ This feature is **enabled by default** with the `coinzilla` ads provider. To swi | NEXT_PUBLIC_FAULT_PROOF_ENABLED | `boolean` | Set to `true` for chains with fault proof system enabled (Optimistic stack only) | - | - | `true` | v1.31.0+ | | NEXT_PUBLIC_HAS_MUD_FRAMEWORK | `boolean` | Set to `true` for instances that use MUD framework (Optimistic stack only) | - | - | `true` | v1.33.0+ | | NEXT_PUBLIC_ROLLUP_HOMEPAGE_SHOW_LATEST_BLOCKS | `boolean` | Set to `true` to display "Latest blocks" widget instead of "Latest batches" on the home page | - | - | `true` | v1.36.0+ | -| NEXT_PUBLIC_ROLLUP_OUTPUT_ROOTS_ENABLED | `boolean` | Enables "Output roots" page (Optimistic stack only) | - | `true` | `false` | v1.37.0+ | +| NEXT_PUBLIC_ROLLUP_OUTPUT_ROOTS_ENABLED | `boolean` | Enables "Output roots" page (Optimistic stack only) | - | `false` | `true` | v1.37.0+ | | NEXT_PUBLIC_ROLLUP_PARENT_CHAIN_NAME | `string` | Set to customize L1 transaction status labels in the UI (e.g., "Sent to "). This setting is applicable only for Arbitrum-based chains. | - | - | `DuckChain` | v1.37.0+ |