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
Currently, the blobstream contracts implementations only support proving a set of shares' inclusion to a data root tuple root. This allows building rollups that leverage the sequence of spans design.
However, proving share commitments is still no supported. This means that rollups that use a blob share commitment to reference their data won't be able to prove its inclusion.
Furthermore, as outlined in the blobstream rollups documentation, using the sequence of spans approach is more beneficial. So, the share commitment approach will not be used and there is no need to support it. However, if there are new ways to build products that make use of the share commitment, it would be nice to discuss them in this issue and decide based on that.
In case we decided to do the implementation, the following will need to be done:
The verification part of https://github.com/celestiaorg/nmt/pull/260/files, which include the implementation of ComputeSubtreeRoot(), VerifySubtreeRootInclusion(), ToLeafRanges() needs to be ported in solidity.
Currently, the blobstream contracts implementations only support proving a set of shares' inclusion to a data root tuple root. This allows building rollups that leverage the sequence of spans design.
However, proving share commitments is still no supported. This means that rollups that use a blob share commitment to reference their data won't be able to prove its inclusion.
Furthermore, as outlined in the blobstream rollups documentation, using the sequence of spans approach is more beneficial. So, the share commitment approach will not be used and there is no need to support it. However, if there are new ways to build products that make use of the share commitment, it would be nice to discuss them in this issue and decide based on that.
In case we decided to do the implementation, the following will need to be done:
ComputeSubtreeRoot()
,VerifySubtreeRootInclusion()
,ToLeafRanges()
needs to be ported in solidity.CommitmentProof
along with its verification will also need to be ported from https://github.com/celestiaorg/blobstream-node-api/pull/1/files to solidityThe text was updated successfully, but these errors were encountered: