interface-ipld-format icon indicating copy to clipboard operation
interface-ipld-format copied to clipboard

A interface you can follow to implement a valid IPLD format, resolvable through the IPLD Resolver (available in IPFS)

Results 2 interface-ipld-format issues
Sort by recently updated
recently updated
newest added

I've being asked to provide feedback on API changes / proposals & sadly that usually means I go and challenge peoples efforts. I think it might be better / only...

So here is my interpretation of the interface described in this repo encoded in flow types ```js // https://github.com/ipld/interface-ipld-format#ipld-format-utils interface Format { serialize(node, Callback):void; deserialize(ArrayBuffer, Callback):void; cid(node, Callback):void; } //...

question
backlog