# OP-Stack

## OpPreconf

Preconfirmation structure containing a sequencer-signed execution payload. Preconfirmations are OP-Stack sequencer commitments that provide early block availability.

The Type is defined in [src/chains/op/ssz/op\_proof\_types.h](https://github.com/corpus-core/colibri-stateless/blob/v1.1.26/src/chains/op/ssz/op_proof_types.h#L48).

```python
class OpPreconf(Container):
    payload   : Union [         # the execution payload (compressed or uncompressed)
        Bytes[1073741824],      # ZSTD-compressed execution payload (domain + payload)
        Bytes[1073741824]]      # uncompressed execution payload (domain + payload)
    signature : ByteVector [65] # the sequencer signature (65 bytes: r, s, v)
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://corpus-core.gitbook.io/specification-colibri-stateless/specifications/op-stack.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
