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
On the Piece Doctor page in the web UI, we should add a link called "Payload CIDs" next to the Piece CID that opens a page listing all payload CIDs in the piece. It should show a table with three columns:
The payload cid as a string "bafy..."
The corresponding multihash in hexadecimal format.
A link to download the block (same as the "Download block" link on the main Piece Doctor page)
To make it easier to search for a particular cid, there should be no pagination: the whole table should display on one page.
The resolver can call PieceDirectory.GetIterableIndex() to get the list of multihashes, and convert each to a cid with
cid := cid.NewCidV1(cid.Raw, m)
The text was updated successfully, but these errors were encountered:
On the Piece Doctor page in the web UI, we should add a link called "Payload CIDs" next to the Piece CID that opens a page listing all payload CIDs in the piece. It should show a table with three columns:
To make it easier to search for a particular cid, there should be no pagination: the whole table should display on one page.
The resolver can call
PieceDirectory.GetIterableIndex()
to get the list of multihashes, and convert each to a cid withThe text was updated successfully, but these errors were encountered: