Open kdeme opened 1 month ago
12 files ±0 1 814 suites ±0 54m 41s :stopwatch: - 1m 1s 5 232 tests ±0 4 884 :heavy_check_mark: ±0 348 :zzz: ±0 0 :x: ±0 29 077 runs ±0 28 625 :heavy_check_mark: ±0 452 :zzz: ±0 0 :x: ±0
Results for commit 566e69b1. ± Comparison against base commit e06af18f.
:recycle: This comment has been updated with latest results.
One consideration for me is that if this does get standardized, we don't end up with both a pre-standardized and standardized version which needs to be supported.
One consideration for me is that if this does get standardized, we don't end up with both a pre-standardized and standardized version which needs to be supported.
One approach could be that I move it under the /nimbus/v1/debug/
prefix for now, assuming that /nimbus/v1/debug/
would mean custom and subject to removal without notice (like for the debug cli flags).
One consideration for me is that if this does get standardized, we don't end up with both a pre-standardized and standardized version which needs to be supported.
One approach could be that I move it under the
/nimbus/v1/debug/
prefix for now, assuming that/nimbus/v1/debug/
would mean custom and subject to removal without notice (like for the debug cli flags).
Why you need to remove it? You can establish redirect()
call from one endpoint to another when it will be part of specification, we was doing this many times.
One consideration for me is that if this does get standardized, we don't end up with both a pre-standardized and standardized version which needs to be supported.
One approach could be that I move it under the
/nimbus/v1/debug/
prefix for now, assuming that/nimbus/v1/debug/
would mean custom and subject to removal without notice (like for the debug cli flags).Why you need to remove it? You can establish
redirect()
call from one endpoint to another when it will be part of specification, we was doing this many times.
Well, part of the point is not to end up with extra, redundant endpoints. The point of this subject to removal without notice would be to exactly allow experimentation without obligation such directions later.
One consideration for me is that if this does get standardized, we don't end up with both a pre-standardized and standardized version which needs to be supported.
One approach could be that I move it under the
/nimbus/v1/debug/
prefix for now, assuming that/nimbus/v1/debug/
would mean custom and subject to removal without notice (like for the debug cli flags).Why you need to remove it? You can establish
redirect()
call from one endpoint to another when it will be part of specification, we was doing this many times.Well, part of the point is not to end up with extra, redundant endpoints. The point of this subject to removal without notice would be to exactly allow experimentation without obligation such directions later.
There could be exactly 2 situations:
In both this cases it could be better to start with /nimbus/
endpoint. Because /nimbus/
endpoint could not be regulated by EF, so we could add/remove any functions. Otherwise in case 1
you will be forced to remove it from /debug/
.
In draft currently as it is not in spec. Needs to be accompanied still with a proposal for beacon REST API specifications.
The idea is that
historical_summaries
is very useful for verifying if beacon blocks (with their accompanied proofs) are part of the canonical chain, however there is no way to actually retrieve thehistorical_summaries
except by using the/eth/v2/debug/beacon/states/{state_id}
endpoint, which is quite the download in terms of size (We are currently using this endpoint in Portal/fluffy for ourportal_bridge
, but it takes long).This PR adds an endpoint that provides the
historical_summaries
with its proof against the state root. This is done so that thehistorical_summaries
can then be verified for example with the finalized state root that a (light) node might hold from its finality update. Again, this is specifically useful in Portal (as aportal_bridge
can inject it in the p2p network as is, and receiving nodes can verify it if they are light client synced) . But you could make an argument that it could also be useful on a consensus light client (assuming blocks with proofs would be somehow available).edit: moved to
/nimbus/v1/debug/
namespace and removed draft