-
There was some talk of decentralized publishing for [npm-on-ipfs](https://github.com/ipfs-shipyard/npm-on-ipfs) on the [IPFS GUI call yesterday](https://www.youtube.com/watch?v=4Ky-MzcjGXg) as a poten…
-
## Background
- Fetching a dag-cbor CID from the gateway returned as a dag-json works when using the `format` query but not with the `Accept` header which appears to be ignored based on the respons…
-
```py
>>> libipld.encode_dag_cbor({"a":1, "b":2})
b'\xa2aa\x01ab\x02'
>>> libipld.encode_dag_cbor({"b":2, "a":1})
b'\xa2ab\x02aa\x01'
```
interestingly, https://github.com/ipld/libipld/blob/ma…
goeo- updated
8 months ago
-
Hey there. I've been using the ipld/dag-cbor library to encode my data.
I just tried using this crate to encode the same data and noticed that it encodes it in the order the struct is declared in.
…
-
I'm aware of three sources of truth for the correspondence between PyPI and Conda names.
1. Grayskull's [config.yaml](https://github.com/conda/grayskull/blob/main/grayskull/strategy/config.yaml). C…
-
After running the `build` command in my Next.js environment, I get the webpack error:
Failed to compile.
./node_modules/@ipld/car/esm/lib/decoder.js
Attempted import error: 'decode'…
-
I'm using serde_transcode to deserialize from serde_wasm_bindgen and serialize into dag-cbor with serde_ipld_dagcbor (I had to patch the library to make the Serializer class public), but JavaScript ob…
goeo- updated
8 months ago
-
Here are 3 test cases:
```py
import libipld
# equivalent to {"abc": 1, "abc": 2} (duplicate key)
print(libipld.decode_dag_cbor(bytes.fromhex("a263616263016361626302")))
# equivalent to {"de…
-
Hey there. I've been using the ipld/dag-cbor library to encode my data.
I just tried using this crate to encode the same data and noticed that it encodes it in the order the struct is declared in.
…
-
This allows us to support _any_ IPLD codec not just pb, cbor and raw.
We never GC so there's no need to ensure every block in a CAR is referenced.
There is some performance gain to be had by not…