filecoin

Filecoin IPLD Data Structures Documentaiton

Usage no npm install needed!

<script type="module">
  import filecoin from 'https://cdn.skypack.dev/filecoin';
</script>

README

Filecoin as an IPLD Data Structure

Within these documents, schemas are grouped by their serialized blocks. Other than those types listed in "Basic Types" and "Crypto Types", each grouping of schema types in a code block represents a data structure that is serialized into a single IPLD block with its own Link (CID).

Advanced Data Layouts (ADLs) are shown in their expanded form here, as the data appears on-block. Their logical forms for programmatic purposes are Map for the HAMT and List for the AMT.

There are some data structures that are repeats of the same forms, primarily the AMT and HAMTs that share the same data types. They are not de-duplicated here for clarity to demonstrate the different purposes of those data structures.

For more information about the IPLD Schema language, see the specificaiton.

Data Structure Descriptions