Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/public-networks/concepts/transactions/types.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ availability for their security and operation).
Blobs are temporarily stored by consensus clients such as Teku, and blocks on the execution layer permanently store
the reference to the blob.

:::tip

The maximum number of blobs per transaction is configurable via the [`--max-blobs-per-transaction`](../../reference/cli/options.md#max-blobs-per-transaction) CLI option (effective from the Osaka hardfork onwards).

:::

### View blob transaction costs

Use the [`eth_blobBaseFee`](../../reference/api/index.md#eth_blobbasefee) method to view the current base
Expand Down
42 changes: 42 additions & 0 deletions docs/public-networks/reference/cli/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -2284,6 +2284,48 @@ logging="DEBUG"

Sets logging verbosity. Log levels are `OFF`, `FATAL`, `ERROR`, `WARN`, `INFO`, `DEBUG`, `TRACE`, `ALL`. The default is `INFO`.

### `max-blobs-per-transaction`

<Tabs>

<TabItem value="Syntax" label="Syntax" default>

```bash
--max-blobs-per-transaction=<INTEGER>
```

</TabItem>

<TabItem value="Example" label="Example">

```bash
--max-blobs-per-transaction=2
```

</TabItem>

<TabItem value="Environment variable" label="Environment variable">

```bash
BESU_MAX_BLOBS_PER_TRANSACTION=2
```

</TabItem>

<TabItem value="Configuration file" label="Configuration file">

```bash
max-blobs-per-transaction=2
```

</TabItem>

</Tabs>

Maximum number of [blobs](../../concepts/transactions/types.md#blob-transactions) allowed per transaction. This option takes effect from the [Osaka hardfork](https://eips.ethereum.org/EIPS/eip-7607) onwards.

If omitted, the node uses the protocol default of 6.

### `max-peers`

<Tabs>
Expand Down
Loading