You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enables the `getBlobs` REST API to retrieve missing blob sidecars from the P2P network via RPC.
3026
+
3027
+
When set to `true`, if required sidecars are not available locally, the node attempts to fetch them from peers.
3028
+
Successfully retrieved sidecars are persisted to the local database to satisfy subsequent requests.
3029
+
This allows nodes to serve blob data without being configured for full custody, while custody backfill is in progress,
3030
+
or for requests outside the local retention period (if peers still hold the data).
3031
+
3032
+
:::note
3033
+
3034
+
Retrieved sidecars are treated as standard custody data and are subject to the network pruning [retention limits](https://github.com/ethereum/consensus-specs/blob/master/specs/fulu/validator.md#sidecar-retention).
Specifies the maximum time in seconds to wait for blob sidecars to be retrieved from the P2P network when serving `getBlobs` requests.
3072
+
3073
+
If the timeout is reached before the required sidecars are retrieved, the reconstruction attempt is aborted.
3074
+
This option is only effective when [`--rest-api-getblobs-sidecars-download-enabled`](#rest-api-getblobs-sidecars-download-enabled) is set to `true`. The default is `5`.
0 commit comments