Need to change the below method across the DA interfaces and implementations:
SubmitBlocks(ctx context.Context, blocks []*types.Block)
to have this signature:
SubmitBlobs(ctx context.Context, blobs []*blob.Blob)
Currently, the block to blob conversion happens before submitting the blob to a DA layer. We'd like to instead do this conversion before even calling SubmitBlobs. This will be useful in #858 which will require the SignedHeader and data in different blobs and potentially even separate namespaces.
Note that the block to blob conversation should happen in manager.go.
Need to change the below method across the DA interfaces and implementations:
to have this signature:
Currently, the block to blob conversion happens before submitting the blob to a DA layer. We'd like to instead do this conversion before even calling
SubmitBlobs. This will be useful in #858 which will require the SignedHeader and data in different blobs and potentially even separate namespaces.Note that the block to blob conversation should happen in
manager.go.