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
Copy file name to clipboardExpand all lines: README.md
+19-4Lines changed: 19 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -126,13 +126,28 @@ In the event that the EigenDA disperser or network is down, the proxy will retur
126
126
127
127
This behavior is turned on by default, but configurable via the `--eigenda.confirmation-timeout` flag (set to 15 mins by default currently). If a blob is not confirmed within this time, the proxy will return a 503 status code. This should be set long enough to accomodate for the disperser's batching interval (typically 10 minutes), signature gathering, and onchain submission.
128
128
129
-
Container can be built via running `make docker-build`.
After the blob certificate is obtained from EigenDA, it is encoded using the requested [commitment schema](#commitment-schemas) and sent back to the rollup sequencer. The sequencer then submits the commitment
138
+
139
+
### Retrieving Blobs
140
+
141
+
### Commitment Schemas
142
+
143
+
> Warning: the name `commitment` is unfortunate here, as it is overloaded to mean both KZG commitment and (we follow the op spec here) [the thing that gets submitted to the batcher inbox](https://specs.optimism.io/experimental/alt-da.html#input-commitment-submission). This section describes the latter, which in the case of EigenDA encompasses the KZG commitment, but contains many other things.
144
+
145
+
TODO: include Austin's diagram here
130
146
131
-
## Commitment Schemas
132
147
Currently, there are two commitment modes supported with unique encoding schemas for each. The `version byte` is shared for all modes and denotes which version of the EigenDA certificate is being used/requested. The following versions are currently supported:
133
148
*`0x0`: V0 certificate type (i.e, dispersal blob info struct with verification against service manager)
134
149
135
-
### Optimism Commitment Mode
150
+
####Optimism Commitment Mode
136
151
For `alt-da` clients running on Optimism, the following commitment schema is supported:
137
152
138
153
```
@@ -146,7 +161,7 @@ Both `keccak256` (i.e, S3 storage using hash of pre-image for commitment value)
146
161
147
162
OP Stack itself only has a conception of the first byte (`commit type`) and does no semantical interpretation of any subsequent bytes within the encoding. The `da layer type` byte for EigenDA is always `0x00`. However it is currently unused by OP Stack with name space values still being actively [discussed](https://github.com/ethereum-optimism/specs/discussions/135#discussioncomment-9271282).
148
163
149
-
### Standard Commitment Mode
164
+
####Standard Commitment Mode
150
165
For standard clients (i.e, `client/client.go`) communicating with proxy (e.g, arbitrum nitro), the following commitment schema is supported:
0 commit comments