builder-specs icon indicating copy to clipboard operation
builder-specs copied to clipboard

Add SSZ support to builder api

Open nflaig opened this issue 1 year ago • 3 comments

This is a proposal to add SSZ support to builder API in a backward compatible way without requiring to bump the apis to v2.

It outlines what is expected from the client and how a well-behaved server should handle different content types, headers, and use appropriate error codes to allow the client to handle the error.

Notable changes are

  • submitBlindedBlock allows to SSZ encoding for both request and response body
  • getHeader allows SSZ encoding of response body
  • Define error codes for unsupported media types (406, 415), those are not mandatory but it would be good if servers adopt these over time to allow clients to implement specific error handling
  • Adds Eth-Consensus-Version to responses, only required if response body is SSZ encoded but preferably should be added to all responses eventually
  • Add notes on how a well-behaved client and server implementation should work

Since we can't know if a builder implemented the changes as per spec, the client can determine if SSZ is supported by requesting an SSZ encoded response in the getHeader request. Preferably this should be done setting a Accept header with multiple entries and quality values like Accept: application/octet-stream;q=1.0,application/json;q=0.9 to give the builder the option to send a JSON response.

Related to https://github.com/ethereum/builder-specs/issues/53 and https://github.com/ethereum/builder-specs/pull/54

nflaig avatar Jul 09 '24 09:07 nflaig

In support of this change. It's nicely backwards-compatible, doesn't add significant risk, decreases latency and could simplify CL flows.

metachris avatar Aug 15 '24 10:08 metachris

Full support, it's a great improvement over the existing API and should be particularly useful for larger blocks. Maybe worth adding an example payload for SSZ as well?

ltitanb avatar Aug 20 '24 18:08 ltitanb

Maybe worth adding an example payload for SSZ as well?

I gave this a try but it has it's limitations since you can't display binary data on the explorer. The solution seems to be to use external examples so we could add ssz to existing examples and reference the files in the ssz examples.

However, there seems to be an issue https://github.com/swagger-api/swagger-ui/issues/5433, the examples won't be displayed on the explorer, it would be great if it would show an option to download the example file but it only shows no example available.

image

There might be a fix for this at some point like https://github.com/swagger-api/swagger-js/pull/2013. For now could do something like here https://github.com/nflaig/builder-specs/compare/ssz-support...nflaig:builder-specs:ssz-examples with the caveat that it won't be available on the explorer.

nflaig avatar Aug 21 '24 13:08 nflaig

Would it make sense to mark the json api deprecated with this same PR? That way we can push to get json removed in the next fork.

barnabasbusa avatar Oct 17 '24 15:10 barnabasbusa

That way we can push to get json removed in the next fork.

In my opinion, having JSON as an option is a good thing, it can be quite useful for debugging.

If this reduces complexity significantly for some implementation it could be considered, however in Lodestar for example it does not make a difference at all as we have to keep JSON support for beacon-api anyways.

nflaig avatar Oct 17 '24 15:10 nflaig

Im in support of this. In Lighthouse its not a problem for us to support both JSON and SSZ

eserilev avatar Oct 17 '24 18:10 eserilev

Lodestar supports this in the latest release (v1.23.0) in case anyone needs a client to test with.

nflaig avatar Nov 23 '24 04:11 nflaig