Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/word-wrap-1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandratran authored Jul 21, 2023
2 parents 2352b0c + 651e8ab commit 2b27a7d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/get-started/install/build-from-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ If you want to use the latest development version of Teku or a specific commit,

:::caution

Teku requires Java 11+; earlier versions are not supported.
Teku requires Java 17+; earlier versions are not supported.

:::

Expand Down
4 changes: 2 additions & 2 deletions docs/get-started/install/install-binaries.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sidebar_position: 1

:::caution

Teku requires Java 11+ to compile; earlier versions are not supported.
Teku requires Java 17+ to compile; earlier versions are not supported.

:::

Expand Down Expand Up @@ -55,7 +55,7 @@ bin\teku --help

:::caution

Teku requires Java 11+ to run. Earlier versions are not supported. You can install Java using `brew install temurin`. Alternatively, you can manually install the [Java JDK](https://www.oracle.com/java/technologies/javase-downloads.html).
Teku requires Java 17+ to run. Earlier versions are not supported. You can install Java using `brew install temurin`. Alternatively, you can manually install the [Java JDK](https://www.oracle.com/java/technologies/javase-downloads.html).

:::

Expand Down
13 changes: 7 additions & 6 deletions docs/reference/cli/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -671,37 +671,38 @@ Normally, at sync, Teku requests all deposit logs from the execution layer up to
If a malicious peer changes the bundled tree, Teku throws `InvalidDepositEventsException` on the next deposit received from the execution layer. The malicious peer can't follow up the chain, and so can't propose with an incorrect deposit tree snapshot.
:::

### exchange-capabilities-enabled
### exchange-capabilities-monitoring-enabled

<!--tabs-->

# Syntax

```bash
--exchange-capabilities-enabled[=<BOOLEAN>]
--exchange-capabilities-monitoring-enabled[=<BOOLEAN>]
```

# Example

```bash
--exchange-capabilities-enabled=true
--exchange-capabilities-monitoring-enabled=true
```

# Environment variable

```bash
TEKU_EXCHANGE_CAPABILITIES_ENABLED=true
TEKU_EXCHANGE_CAPABILITIES_MONITORING_ENABLED=true
```

# Configuration file

```bash
exchange-capabilities-enabled: true
exchange-capabilities-monitoring-enabled: true
```

<!--/tabs-->

Enables or disables Engine API method negotiation. Using this option simplifies the process of upgrading nodes, allowing the beacon node to know what Engine API methods the [execution client](../../concepts/merge.md#execution-clients) supports. The default is `true`.
Enables or disables querying the [execution client](../../concepts/merge.md#execution-clients) periodically for the Engine API methods it supports. If enabled and incompatibility is detected, a warning is raised in the logs. The default is `true`.


### genesis-state

Expand Down

0 comments on commit 2b27a7d

Please sign in to comment.